1 write to StringList
Microsoft.Build.Tasks.Core (1)
XamlTaskFactory\CommandLineGenerator.cs (1)
158
switchToAdd.
StringList
= (string[])value;
7 references to StringList
Microsoft.Build.Tasks.Core (7)
XamlTaskFactory\CommandLineGenerator.cs (7)
370
var stringList = new List<string>(commandLineToolSwitch.
StringList
.Length);
371
for (int i = 0; i < commandLineToolSwitch.
StringList
.Length; ++i)
375
if (commandLineToolSwitch.
StringList
[i].StartsWith("\"", StringComparison.OrdinalIgnoreCase) && commandLineToolSwitch.
StringList
[i].EndsWith("\"", StringComparison.OrdinalIgnoreCase))
377
value = commandLineToolSwitch.
StringList
[i].Substring(1, commandLineToolSwitch.
StringList
[i].Length - 2).Trim();
381
value = commandLineToolSwitch.
StringList
[i].Trim();