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