6 references to PathToBuiltInTool
Microsoft.Build.Tasks.CodeAnalysis (4)
src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (2)
544var clientDirectory = Path.GetDirectoryName(PathToBuiltInTool); 547LogCompilationMessage(logger, requestId, CompilationKind.Tool, $"using command line tool because we could not find client or temp directory '{PathToBuiltInTool}'");
src\Compilers\Core\MSBuildTask\ManagedToolTask.cs (2)
105commandLineArguments = RuntimeHostInfo.GetDotNetExecCommandLine(PathToBuiltInTool, commandLineArguments); 146return UseAppHost ? PathToBuiltInTool : RuntimeHostInfo.GetDotNetPathOrDefault();
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (2)
MSBuildManagedToolTests.cs (1)
21Assert.Equal(Path.Combine(taskPath, relativePath), task.PathToBuiltInTool);
TestUtilities\TaskTestUtil.cs (1)
43AssertEx.Equal($@"{task.PathToBuiltInTool} {line}", commandLine);