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