1 write to ExitCode
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] },
4 references to ExitCode
aspire (4)
BackchannelJsonSerializerContext.CommandOutput.g.cs (2)
132
Getter = static obj => ((global::Aspire.Cli.Backchannel.CommandOutput)obj).
ExitCode
,
165
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Aspire.Cli.Backchannel.CommandOutput)value).
ExitCode
, NullableInt32);
Commands\ExecCommand.cs (2)
220
if (output.
ExitCode
is not null)
222
exitCode = output.
ExitCode
;