6 instantiations of CommandOutput
Aspire.Hosting (6)
Exec\ExecResourceManager.cs (6)
49
yield return new
CommandOutput
76
yield return new
CommandOutput
88
yield return new
CommandOutput
117
yield return new
CommandOutput
135
yield return new
CommandOutput
146
yield return new
CommandOutput
7 references to CommandOutput
Aspire.Hosting (3)
Backchannel\AppHostRpcTarget.cs (2)
182
public async IAsyncEnumerable<
CommandOutput
> ExecAsync([EnumeratorCancellation] CancellationToken cancellationToken)
186
await foreach (
var
commandOutput in logsStream.ConfigureAwait(false))
Exec\ExecResourceManager.cs (1)
40
public async IAsyncEnumerable<
CommandOutput
> StreamExecResourceLogs([EnumeratorCancellation] CancellationToken cancellationToken)
Aspire.Hosting.Tests (4)
Backchannel\Exec\ExecTestsBase.cs (4)
22
internal async Task<List<
CommandOutput
>> ExecWithLogCollectionAsync(
31
var logs = new List<
CommandOutput
>();
33
await foreach (
var
message in outputStream)
46
internal static void AssertLogsContain(List<
CommandOutput
> logs, params string[] expectedLogMessages)