5 references to PlatformSupportsConsole
System.Diagnostics.Process (5)
Microsoft\Win32\SafeHandles\SafeProcessHandle.cs (3)
113
childInputHandle ??= nullDeviceHandle ?? (ProcessUtils.
PlatformSupportsConsole
? Console.OpenStandardInputHandle() : null);
114
childOutputHandle ??= nullDeviceHandle ?? (ProcessUtils.
PlatformSupportsConsole
? Console.OpenStandardOutputHandle() : null);
115
childErrorHandle ??= nullDeviceHandle ?? (ProcessUtils.
PlatformSupportsConsole
? Console.OpenStandardErrorHandle() : null);
System\Diagnostics\Process.cs (1)
1251
else if (ProcessUtils.
PlatformSupportsConsole
)
System\Diagnostics\ProcessStartInfo.cs (1)
544
if (inheritedHandles is null || inheritedHandles.Length == 0 || !ProcessUtils.
PlatformSupportsConsole
)