1 instantiation of CommandOutput
Aspire.Cli.Tests (1)
TestServices\TestAppHostCliBackchannel.cs (1)
251
yield return new
CommandOutput
{ Text = "test", IsErrorMessage = false, LineNumber = 0 };
9 references to CommandOutput
aspire (7)
Backchannel\AppHostCliBackchannel.cs (4)
26
IAsyncEnumerable<
CommandOutput
> ExecAsync(CancellationToken cancellationToken);
448
public async IAsyncEnumerable<
CommandOutput
> ExecAsync([EnumeratorCancellation] CancellationToken cancellationToken)
454
var commandOutputs = await rpc.InvokeWithCancellationAsync<IAsyncEnumerable<
CommandOutput
>>(
460
await foreach (
var
commandOutput in commandOutputs.WithCancellation(cancellationToken))
Backchannel\BackchannelJsonSerializerContext.cs (2)
35
[JsonSerializable(typeof(IAsyncEnumerable<
CommandOutput
>))]
36
[JsonSerializable(typeof(MessageFormatterEnumerableTracker.EnumeratorResults<
CommandOutput
>))]
Commands\ExecCommand.cs (1)
212
await foreach (
var
output in outputStream)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
835
public async IAsyncEnumerable<
CommandOutput
> ExecAsync([EnumeratorCancellation] CancellationToken cancellationToken)
TestServices\TestAppHostCliBackchannel.cs (1)
248
public async IAsyncEnumerable<
CommandOutput
> ExecAsync([EnumeratorCancellation] CancellationToken cancellationToken)