8 references to StartAsync
aspire (2)
Commands\DashboardRunCommand.cs (1)
422process = await _layoutProcessRunner.StartAsync(managedPath, dashboardArgs, environmentVariables: environmentVariables, options: options, killOnParentExit: true).ConfigureAwait(false);
Profiling\ProfileCaptureService.cs (1)
110dashboardProcess = await layoutProcessRunner.StartAsync(
Aspire.Cli.Tests (6)
Layout\LayoutProcessRunnerTests.cs (6)
66await using var execution = await runner.StartAsync("tool", ["arg"]); 86await using var execution = await runner.StartAsync("tool", ["arg"], environmentVariables: callerEnv); 144await using var execution = await runner.StartAsync("tool", ["arg"], killOnParentExit: true); 165await using var execution = await runner.StartAsync("tool", ["arg"], options: callerOptions); 187await using var execution = await runner.StartAsync("tool", ["arg"], options: callerOptions, killOnParentExit: true); 244await using var execution = await runner.StartAsync("tool", ["arg"], killOnParentExit: true);