1 write to ToolPath
Microsoft.DotNet.Build.Tasks.Workloads (1)
Wix\WixToolTaskBase.cs (1)
51
ToolPath
= wixToolsetPath;
8 references to ToolPath
Microsoft.Build.Tasks.CodeAnalysis (2)
src\roslyn\src\Compilers\Core\MSBuildTask\ManagedToolTask.cs (2)
55
protected bool UsingBuiltinTool => string.IsNullOrEmpty(
ToolPath
) && (ToolExe == ToolName || ToolExe == AppHostToolName);
164
return Path.Combine(
ToolPath
?? "", ToolExe);
Microsoft.Build.Utilities.Core (3)
ToolTask.cs (3)
528
if (!string.IsNullOrEmpty(
ToolPath
))
531
pathToTool = Path.Combine(
ToolPath
, ToolExe);
534
if (string.IsNullOrWhiteSpace(pathToTool) || (
ToolPath
== null && !FileSystems.Default.FileExists(TaskEnvironment.GetAbsolutePath(pathToTool))))
Microsoft.DotNet.Build.Tasks.Workloads (1)
Wix\WixToolTaskBase.cs (1)
78
protected override string GenerateFullPathToTool() =>
ToolPath
;
sdk-tasks (2)
DotNetTool.cs (2)
40
if (string.IsNullOrEmpty(
ToolPath
))
47
return
ToolPath
;