1 write to Separator
Microsoft.Build.Tasks.Core (1)
XamlTaskFactory\CommandLineGenerator.cs (1)
67
switchToAdd.
Separator
= property.Separator;
13 references to Separator
Microsoft.Build.Tasks.Core (12)
XamlTaskFactory\CommandLineGenerator.cs (12)
350
if (String.IsNullOrEmpty(commandLineToolSwitch.
Separator
))
359
clb.AppendSwitchIfNotNull(commandLineToolSwitch.SwitchValue, commandLineToolSwitch.TaskItemArray, commandLineToolSwitch.
Separator
);
397
if (String.IsNullOrEmpty(commandLineToolSwitch.
Separator
))
409
if (!PerformSwitchValueSubstition(clb, commandLineToolSwitch, String.Join(commandLineToolSwitch.
Separator
, arrTrimStringList)))
411
clb.AppendSwitchIfNotNull(commandLineToolSwitch.SwitchValue, arrTrimStringList, commandLineToolSwitch.
Separator
);
459
else if (!String.IsNullOrEmpty(commandLineToolSwitch.
Separator
))
461
clb.AppendSwitch(commandLineToolSwitch.SwitchValue + commandLineToolSwitch.
Separator
+ numberAsString);
485
strSwitch += commandLineToolSwitch.SwitchValue + commandLineToolSwitch.
Separator
;
511
string arguments = GatherArguments(commandLineToolSwitch.Name, commandLineToolSwitch.Arguments, commandLineToolSwitch.
Separator
);
514
str = str + commandLineToolSwitch.
Separator
+ arguments;
565
val.Insert(0, commandLineToolSwitch.
Separator
);
592
val.Insert(0, commandLineToolSwitch.
Separator
);
Microsoft.Build.Tasks.UnitTests (1)
XamlTaskFactory_Tests.cs (1)
868
string CommandLineToolSwitchOutput = switchList["BasicInteger"].SwitchValue + switchList["BasicInteger"].
Separator
+ switchList["BasicInteger"].Number;