3 implementations of LaunchAsync
aspire (2)
Projects\ExtensionGuestLauncher.cs (1)
31public async Task<(int ExitCode, OutputCollector? Output)> LaunchAsync(
Projects\ProcessGuestLauncher.cs (1)
43public async Task<(int ExitCode, OutputCollector? Output)> LaunchAsync(
Aspire.Cli.Tests (1)
Projects\GuestRuntimeTests.cs (1)
1468public async Task<(int ExitCode, OutputCollector? Output)> LaunchAsync(
2 references to LaunchAsync
aspire (2)
Projects\GuestRuntime.cs (2)
268var (exitCode, output) = await preExecuteLauncher.LaunchAsync(commandSpec.Command, args, directory, mergedEnvironment, afterLaunchAsync: null, options: null, cancellationToken); 549var (exitCode, output) = await launcher.LaunchAsync(commandSpec.Command, args, directory, mergedEnvironment, afterLaunchAsync: afterLaunchAsync, options: launchOptions, cancellationToken);