3 implementations of GetCommandPathFromRootPath
dotnet.Tests (1)
ShellShimTests\WindowsEnvironmentPathTests.cs (1)
138
public string
GetCommandPathFromRootPath
(string rootPath, string commandName, params string[] extensions)
Microsoft.DotNet.Cli.Utils (1)
EnvironmentProvider.cs (1)
86
public string?
GetCommandPathFromRootPath
(string rootPath, string commandName, params string[] extensions)
Microsoft.NET.Build.Containers.UnitTests (1)
RegistryTests.cs (1)
685
public string
GetCommandPathFromRootPath
(string rootPath, string commandName, params string[] extensions)
4 references to GetCommandPathFromRootPath
dotnet (3)
CommandFactory\CommandResolution\AppBaseCommandResolver.cs (1)
15
return _environment.
GetCommandPathFromRootPath
(
CommandFactory\CommandResolution\OutputPathCommandResolver.cs (1)
67
return _environment.
GetCommandPathFromRootPath
(buildOutputPath, commandName);
CommandFactory\CommandResolution\PublishedPathCommandResolver.cs (1)
76
return _environment.
GetCommandPathFromRootPath
(publishDirectory, commandName, ".dll");
Microsoft.DotNet.Cli.Utils (1)
Env.cs (1)
16
s_environment.
GetCommandPathFromRootPath
(rootPath, commandName, extensions);