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