5 references to FindAllFullPathsFromPath
Aspire.Hosting (1)
src\Shared\PathLookupHelper.cs (1)
98
return
FindAllFullPathsFromPath
(command, Environment.GetEnvironmentVariable("PATH"), Path.PathSeparator, FileExistsAndIsExecutable, pathExtensions);
Aspire.Hosting.Tests (4)
PathLookupHelperTests.cs (4)
188
var result = PathLookupHelper.
FindAllFullPathsFromPath
("mycommand", "/first/path:/second/path", ':', existingFiles.Contains, null);
198
var result = PathLookupHelper.
FindAllFullPathsFromPath
("mycommand", "/usr/bin:/usr/local/bin", ':', AlwaysFalse, null);
241
var result = PathLookupHelper.
FindAllFullPathsFromPath
(
266
var result = PathLookupHelper.
FindAllFullPathsFromPath
("code", path, ';', existingFiles.Contains, pathExtensions);