2 writes to KillOnParentExit
aspire (2)
DotNet\ProcessExecutionFactory.cs (2)
72KillOnParentExit = options.KillOnParentExit, 113KillOnParentExit = options.KillOnParentExit,
5 references to KillOnParentExit
aspire (5)
Processes\IsolatedProcess.cs (2)
50/// <see cref="KillOnParentExit"/> or <see cref="Detached"/> requires the Windows interop launcher. 329else if (OperatingSystem.IsWindows() && (_startInfo.IsolateConsole || _startInfo.KillOnParentExit || _startInfo.Detached))
Processes\IsolatedProcess.Windows.cs (3)
20/// independent: when <see cref="IsolatedProcessStartInfo.KillOnParentExit"/> is set, the spawn 83var jobHandle = startInfo.KillOnParentExit ? WindowsConsoleProcessJob.Shared.Handle : null; 227jobHandle: startInfo.KillOnParentExit ? WindowsConsoleProcessJob.Shared.Handle : null);