10 references to Executable
dotnet (10)
CommandFactory\CommandResolution\LocalToolsCommandResolver.cs (2)
86
if (!_fileSystem.File.Exists(toolCommand.
Executable
.Value))
92
return ToolCommandSpecCreator.CreateToolCommandSpec(toolCommand.Name.Value, toolCommand.
Executable
.Value, toolCommand.Runner,
Commands\Tool\Execute\ToolExecuteCommand.cs (1)
143
var commandSpec = ToolCommandSpecCreator.CreateToolCommandSpec(toolPackage.Command.Name.Value, toolPackage.Command.
Executable
.Value, toolPackage.Command.Runner, _allowRollForward, _forwardArguments);
Commands\Tool\Restore\ToolPackageRestorer.cs (1)
133
&& _fileSystem.File.Exists(toolCommand.
Executable
.Value);
ShellShim\ShellShimRepository.cs (3)
26
if (string.IsNullOrEmpty(toolCommand.
Executable
.Value))
59
toolCommand.
Executable
,
66
string relativePathToExe = Path.GetRelativePath(_shimsDirectory.Value, toolCommand.
Executable
.Value);
ToolPackage\LocalToolsResolverCache.cs (1)
129
PathToExecutable = toolCommand.
Executable
.Value
ToolPackage\ToolCommand.cs (1)
24
return $"ToolCommandName: {Name.Value} - Runner: {Runner} - FilePath: {
Executable
.Value}";
ToolPackage\ToolPackageDownloaderBase.cs (1)
383
var runtimeConfigFilePath = Path.ChangeExtension(toolPackageInstance.Command.
Executable
.Value, ".runtimeconfig.json");