22 references to SplitCommandLineIntoArguments
csc (1)
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (1)
Microsoft.CodeAnalysis.LanguageServerIndexFormat.Generator (1)
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)
Microsoft.CodeAnalysis.Workspaces (2)
vbc (1)
VBCSCompiler (1)