8 lines
329 B
Python
8 lines
329 B
Python
from CommandBuilders.PatchCsprojCommandBuilder import PatchCsprojCommandBuilder
|
|
from commands.ValueProvider import ValueProvider
|
|
|
|
line = "inside 'BuildSample/BuildSample/CoolApp.csproj' set OutputPath to 'Output' for 'Release|iPhone'"
|
|
|
|
builder = PatchCsprojCommandBuilder()
|
|
command = builder.getCommandFor(line)
|
|
command.execute() |