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