9 references to MSBuildPropertyParser
dotnet (1)
Commands\Test\VSTest\TestCommand.cs (1)
346var propertyPairs = MSBuildPropertyParser.ParseProperties(unmatchedToken);
Microsoft.DotNet.Cli.Definitions (8)
Commands\Test\TestCommandDefinition.VSTest.cs (6)
18}.ForwardAsSingle(o => $"-property:VSTestSetting={MSBuildPropertyParser.SurroundWithDoubleQuotes(CommandDirectoryContext.GetFullPath(o))}"); 32}.ForwardAsSingle(o => $"-property:VSTestTestCaseFilter={MSBuildPropertyParser.SurroundWithDoubleQuotes(o!)}"); 38}.ForwardAsSingle(o => $"-property:VSTestTestAdapterPath={MSBuildPropertyParser.SurroundWithDoubleQuotes(string.Join(";", o!.Select(CommandDirectoryContext.GetFullPath)))}") 48return $"-property:VSTestLogger={MSBuildPropertyParser.SurroundWithDoubleQuotes(loggersString)}"; 66.ForwardAsSingle(o => $"-property:VSTestDiag={MSBuildPropertyParser.SurroundWithDoubleQuotes(CommandDirectoryContext.GetFullPath(o))}"); 78}.ForwardAsSingle(o => $"-property:VSTestResultsDirectory={MSBuildPropertyParser.SurroundWithDoubleQuotes(CommandDirectoryContext.GetFullPath(o))}");
Common\CommonOptions.cs (1)
58foreach (var kvp in MSBuildPropertyParser.ParseProperties(token.Value))
Utilities\OptionExtensions.cs (1)
55argVal = MSBuildPropertyParser.SurroundWithDoubleQuotes(argVal);