21 references to SplitCommandLineIntoArguments
csc (1)
src\Compilers\Shared\BuildClient.cs (1)
365return CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments: false).Skip(1);
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (1)
CommandLineTests.cs (1)
128var args = CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments: true);
Microsoft.CodeAnalysis.UnitTests (14)
CommonCommandLineParserTests.cs (14)
22var actual = CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments).ToArray(); 1160CommandLineParser.SplitCommandLineIntoArguments(@"\\test", removeHashComments: false)); 1166CommandLineParser.SplitCommandLineIntoArguments(@"\\""test", removeHashComments: false)); 1170CommandLineParser.SplitCommandLineIntoArguments(@"\\\""test", removeHashComments: false)); 1174CommandLineParser.SplitCommandLineIntoArguments(@"\\\test", removeHashComments: false)); 1178CommandLineParser.SplitCommandLineIntoArguments(@"\\\\\test", removeHashComments: false)); 1189CommandLineParser.SplitCommandLineIntoArguments(@"a b", removeHashComments: false)); 1193CommandLineParser.SplitCommandLineIntoArguments(@"""a b""", removeHashComments: false)); 1197CommandLineParser.SplitCommandLineIntoArguments(@"""a "" b""", removeHashComments: false)); 1203CommandLineParser.SplitCommandLineIntoArguments(@"""a \"" b""", removeHashComments: false)); 1207CommandLineParser.SplitCommandLineIntoArguments(@"\a b", removeHashComments: false)); 1212CommandLineParser.SplitCommandLineIntoArguments(@"\""a b\""", removeHashComments: false)); 1217CommandLineParser.SplitCommandLineIntoArguments(@"\\""a b\\""", removeHashComments: false)); 1221CommandLineParser.SplitCommandLineIntoArguments(@"""a""m""b""", removeHashComments: false));
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (1)
CommandLineTests.vb (1)
55Dim args = CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments:=True)
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\CommandLineProject.cs (1)
185var args = CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments: true);
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (1)
98var arguments = CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments: false);
vbc (1)
src\Compilers\Shared\BuildClient.cs (1)
365return CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments: false).Skip(1);
VBCSCompiler (1)
src\Compilers\Shared\BuildClient.cs (1)
365return CommandLineParser.SplitCommandLineIntoArguments(commandLine, removeHashComments: false).Skip(1);