4 references to InstallDependenciesAsync
aspire (2)
Projects\GuestAppHostProject.cs (1)
1311
var (result, output) = await _guestRuntime.
InstallDependenciesAsync
(directory, cancellationToken);
Scaffolding\ScaffoldingService.cs (1)
182
var (result, output) = await runtime.
InstallDependenciesAsync
(directory, cancellationToken);
Aspire.Cli.Tests (2)
Projects\GuestRuntimeTests.cs (2)
295
var (exitCode, output) = await runtime.
InstallDependenciesAsync
(new DirectoryInfo("/tmp"), CancellationToken.None);
317
var (exitCode, output) = await runtime.
InstallDependenciesAsync
(new DirectoryInfo(Path.GetTempPath()), CancellationToken.None);