12 references to SurroundWithDoubleQuotes
dotnet (7)
Commands\Test\TestCommandParser.cs (6)
33
}.ForwardAsSingle(o => $"-property:VSTestSetting={
SurroundWithDoubleQuotes
(CommandDirectoryContext.GetFullPath(o))}");
45
}.ForwardAsSingle(o => $"-property:VSTestTestCaseFilter={
SurroundWithDoubleQuotes
(o!)}");
51
}.ForwardAsSingle(o => $"-property:VSTestTestAdapterPath={
SurroundWithDoubleQuotes
(string.Join(";", o!.Select(CommandDirectoryContext.GetFullPath)))}")
62
return $"-property:VSTestLogger={
SurroundWithDoubleQuotes
(loggersString)}";
78
.ForwardAsSingle(o => $"-property:VSTestDiag={
SurroundWithDoubleQuotes
(CommandDirectoryContext.GetFullPath(o))}");
90
}.ForwardAsSingle(o => $"-property:VSTestResultsDirectory={
SurroundWithDoubleQuotes
(CommandDirectoryContext.GetFullPath(o))}");
Extensions\OptionForwardingExtensions.cs (1)
67
argVal = TestCommandParser.
SurroundWithDoubleQuotes
(argVal);
dotnet.Tests (5)
CommandTests\Test\TestCommandParserTests.cs (5)
17
TestCommandParser.
SurroundWithDoubleQuotes
(null));
27
var result = TestCommandParser.
SurroundWithDoubleQuotes
(escapedInput);
39
var result = TestCommandParser.
SurroundWithDoubleQuotes
(input);
50
var result = TestCommandParser.
SurroundWithDoubleQuotes
(input);
61
var result = TestCommandParser.
SurroundWithDoubleQuotes
(input);