1 write to DotnetFilePath
RunTests (1)
Options.cs (1)
133
DotnetFilePath
= dotnetFilePath;
7 references to DotnetFilePath
RunTests (7)
ProcessTestExecutor.cs (4)
119
var vsTestConsolePath = GetVsTestConsolePath(options.
DotnetFilePath
);
139
options.
DotnetFilePath
,
179
Logger.Log($"Command line {workItemInfo.DisplayName} completed in {span.TotalSeconds} seconds: {options.
DotnetFilePath
} {commandLineArguments}");
212
throw new Exception($"Unable to run {workItemInfo.DisplayName} with {options.
DotnetFilePath
}. {ex}");
Program.cs (2)
45
ConsoleUtil.WriteLine($"Running '{options.
DotnetFilePath
} --version'..");
46
var dotnetResult = await ProcessRunner.CreateProcess(options.
DotnetFilePath
, arguments: "--version", captureOutput: true).Result;
TestRunner.cs (1)
139
executable: _options.
DotnetFilePath
,