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