2 writes to IsErrorMessage
aspire (1)
BackchannelJsonSerializerContext.CommandOutput.g.cs (1)
32ObjectWithParameterizedConstructorCreator = 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)
252yield return new CommandOutput { Text = "test", IsErrorMessage = false, LineNumber = 0 };
3 references to IsErrorMessage
aspire (3)
BackchannelJsonSerializerContext.CommandOutput.g.cs (2)
81Getter = static obj => ((global::Aspire.Cli.Backchannel.CommandOutput)obj).IsErrorMessage, 170writer.WriteBoolean(PropName_IsErrorMessage, ((global::Aspire.Cli.Backchannel.CommandOutput)value).IsErrorMessage);
Commands\ExecCommand.cs (1)
225InteractionService.WriteConsoleLog(output.Text, output.LineNumber, output.Type, output.IsErrorMessage);