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