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