12 references to FindFullPathFromPath
aspire (12)
Agents\ClaudeCode\ClaudeCodeCliRunner.cs (1)
21
var executablePath = PathLookupHelper.
FindFullPathFromPath
("claude");
Agents\Copilot\CopilotCliRunner.cs (1)
21
var executablePath = PathLookupHelper.
FindFullPathFromPath
("copilot");
Agents\OpenCode\OpenCodeCliRunner.cs (1)
21
var executablePath = PathLookupHelper.
FindFullPathFromPath
("opencode");
Agents\Playwright\PlaywrightCliRunner.cs (2)
18
var executablePath = PathLookupHelper.
FindFullPathFromPath
("playwright-cli");
83
var executablePath = PathLookupHelper.
FindFullPathFromPath
("playwright-cli");
Agents\VsCode\VsCodeCliRunner.cs (1)
22
var executablePath = PathLookupHelper.
FindFullPathFromPath
(command);
Npm\NpmRunner.cs (1)
28
private readonly Lazy<string?> _npmPath = new(() => PathLookupHelper.
FindFullPathFromPath
("npm"));
Scaffolding\ScaffoldingService.cs (1)
432
var runtime = new GuestRuntime(runtimeSpec, _logger, PathLookupHelper.
FindFullPathFromPath
, _environment, _profilingTelemetry);
Utils\CommandPathResolver.cs (1)
30
return TryResolveCommand(command, PathLookupHelper.
FindFullPathFromPath
, out resolvedCommand, out errorMessage);
Utils\EnvironmentChecker\TypeScriptAppHostToolingCheck.cs (1)
38
PathLookupHelper.
FindFullPathFromPath
,
Utils\EnvironmentChecker\VsCodeExtensionCheck.cs (2)
36
: this(environment, executionContext, PathLookupHelper.
FindFullPathFromPath
)
101
=> Detect(environment, homeDirectory, PathLookupHelper.
FindFullPathFromPath
);