1 instantiation of CommandOutput
Aspire.Cli.Tests (1)
TestServices\TestAppHostBackchannel.cs (1)
247
yield return new
CommandOutput
{ Text = "test", IsErrorMessage = false, LineNumber = 0 };
9 references to CommandOutput
aspire (7)
Backchannel\AppHostBackchannel.cs (4)
25
IAsyncEnumerable<
CommandOutput
> ExecAsync(CancellationToken cancellationToken);
199
public async IAsyncEnumerable<
CommandOutput
> ExecAsync([EnumeratorCancellation] CancellationToken cancellationToken)
205
var commandOutputs = await rpc.InvokeWithCancellationAsync<IAsyncEnumerable<
CommandOutput
>>(
211
await foreach (
var
commandOutput in commandOutputs.WithCancellation(cancellationToken))
Backchannel\BackchannelJsonSerializerContext.cs (2)
28
[JsonSerializable(typeof(IAsyncEnumerable<
CommandOutput
>))]
29
[JsonSerializable(typeof(MessageFormatterEnumerableTracker.EnumeratorResults<
CommandOutput
>))]
Commands\ExecCommand.cs (1)
208
await foreach (
var
output in outputStream)
Aspire.Cli.Tests (2)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
647
public async IAsyncEnumerable<
CommandOutput
> ExecAsync([EnumeratorCancellation] CancellationToken cancellationToken)
TestServices\TestAppHostBackchannel.cs (1)
244
public async IAsyncEnumerable<
CommandOutput
> ExecAsync([EnumeratorCancellation] CancellationToken cancellationToken)