2 writes to LineNumber
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 LineNumber
aspire (3)
BackchannelJsonSerializerContext.CommandOutput.g.cs (2)
94
Getter = static obj => ((global::Aspire.Cli.Backchannel.CommandOutput)obj).
LineNumber
,
162
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::Aspire.Cli.Backchannel.CommandOutput)value).
LineNumber
, NullableInt32);
Commands\ExecCommand.cs (1)
219
InteractionService.WriteConsoleLog(output.Text, output.
LineNumber
, output.Type, output.IsErrorMessage);