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