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