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