2 writes to Text
aspire (1)
BackchannelJsonSerializerContext.CommandOutput.g.cs (1)
30ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Backchannel.CommandOutput(){ Text = (string)args[0], IsErrorMessage = (bool)args[1], LineNumber = (int?)args[2], Type = (string)args[3], ExitCode = (int?)args[4] },
Aspire.Cli.Tests (1)
TestServices\TestAppHostBackchannel.cs (1)
247yield return new CommandOutput { Text = "test", IsErrorMessage = false, LineNumber = 0 };
3 references to Text
aspire (3)
BackchannelJsonSerializerContext.CommandOutput.g.cs (2)
55Getter = static obj => ((global::Aspire.Cli.Backchannel.CommandOutput)obj).Text, 159writer.WriteString(PropName_Text, ((global::Aspire.Cli.Backchannel.CommandOutput)value).Text);
Commands\ExecCommand.cs (1)
219InteractionService.WriteConsoleLog(output.Text, output.LineNumber, output.Type, output.IsErrorMessage);