1 instantiation of ProcessExecution
aspire (1)
DotNet\ProcessExecutionFactory.cs (1)
216return new ProcessExecution(startInfo, fileName, argsSnapshot, envSnapshot, logger, options, environment, layoutDiscovery, bundleService, executionContext);
9 references to ProcessExecution
aspire (9)
ConsoleCancellationManager.cs (1)
380/// (<see cref="DotNet.ProcessExecution"/> and the ladders it drives). Implemented by
DotNet\DotNetCliRunner.cs (4)
73/// shutdown ladder in <see cref="ProcessExecution"/> can target the child with DCP's 81/// <see cref="ProcessExecution"/>'s force-kill mode, preserving back-compat 132/// path uses <see cref="ProcessExecution"/>'s force-kill mode. 139/// <c>null</c>, the cancellation path uses <see cref="ProcessExecution"/>'s
DotNet\ProcessExecution.cs (3)
90?? throw new InvalidOperationException($"{nameof(ProcessExecution)} has not been started. Call {nameof(StartAsync)} first."); 101? new ObjectDisposedException(nameof(ProcessExecution)) 102: new InvalidOperationException($"{nameof(ProcessExecution)} has already been started.");
Projects\AppHostServerSession.cs (1)
27/// driver, and it lives in <see cref="ProcessExecution"/>.