1 write to ToolPath
Microsoft.DotNet.Build.Tasks.Workloads (1)
Wix\WixToolTaskBase.cs (1)
47
ToolPath
= Path.GetDirectoryName(toolPath);
9 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 (2)
Wix\WixToolTask.cs (1)
101
public string GetWixCommandLine() => Path.Combine(
ToolPath
, ToolExe) + " " +
Wix\WixToolTaskBase.cs (1)
51
protected override string GenerateFullPathToTool() => Path.Combine(
ToolPath
, ToolName);
sdk-tasks (2)
DotNetTool.cs (2)
40
if (string.IsNullOrEmpty(
ToolPath
))
47
return
ToolPath
;