2 writes to StandardErrorClosed
aspire (2)
Processes\IsolatedProcess.cs (2)
130StandardErrorClosed = Task.CompletedTask; 220StandardErrorClosed = errorTcs.Task;
4 references to StandardErrorClosed
aspire (1)
DotNet\ProcessExecution.cs (1)
597var drained = Task.WhenAll(process.StandardOutputClosed, process.StandardErrorClosed);
Aspire.Cli.Tests (3)
Processes\IsolatedProcessTests.cs (3)
38await Task.WhenAll(child.StandardOutputClosed, child.StandardErrorClosed).WaitAsync(TimeSpan.FromSeconds(10)); 70await Task.WhenAll(child.StandardOutputClosed, child.StandardErrorClosed).WaitAsync(TimeSpan.FromSeconds(10)); 111await child.StandardErrorClosed.WaitAsync(TimeSpan.FromSeconds(10));