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