2 writes to Message
aspire (2)
BackchannelJsonSerializerContext.DiagnosticInfo.g.cs (1)
81Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Message = value!,
CapabilitiesJsonContext.DiagnosticInfo.g.cs (1)
81Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Message = value!,
7 references to Message
aspire (7)
BackchannelJsonSerializerContext.DiagnosticInfo.g.cs (2)
80Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Message, 131writer.WriteString(PropName_Message, ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)value).Message);
CapabilitiesJsonContext.DiagnosticInfo.g.cs (2)
80Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Message, 135string __value_Message = ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)value).Message;
Commands\Sdk\SdkDumpCommand.cs (3)
173_logger.LogDebug("{Message}{Location}", diag.Message, location); 265sb.AppendLine(string.Format(CultureInfo.InvariantCulture, "{0}: {1}{2}", d.Severity.ToLowerInvariant(), d.Message, loc)); 367sb.AppendLine(string.Format(CultureInfo.InvariantCulture, " {0} {1}", icon, d.Message));