2 writes to Location
aspire (2)
BackchannelJsonSerializerContext.DiagnosticInfo.g.cs (1)
103Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Location = value!,
CapabilitiesJsonContext.DiagnosticInfo.g.cs (1)
103Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Location = value!,
12 references to Location
aspire (12)
BackchannelJsonSerializerContext.DiagnosticInfo.g.cs (2)
102Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Location, 132writer.WriteString(PropName_Location, ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)value).Location);
CapabilitiesJsonContext.DiagnosticInfo.g.cs (2)
102Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)obj).Location, 140string __value_Location = ((global::Aspire.Cli.Commands.Sdk.DiagnosticInfo)value).Location;
Commands\Sdk\SdkDumpCommand.cs (8)
177var location = string.IsNullOrEmpty(diag.Location) ? "" : $" [{diag.Location}]"; 267foreach (var d in capabilities.Diagnostics.OrderBy(d => d.Severity).ThenBy(d => d.Location)) 269var loc = string.IsNullOrEmpty(d.Location) ? "" : string.Format(CultureInfo.InvariantCulture, " [{0}]", d.Location); 369foreach (var d in capabilities.Diagnostics.OrderBy(d => d.Severity).ThenBy(d => d.Location)) 373if (!string.IsNullOrEmpty(d.Location)) 375sb.AppendLine(string.Format(CultureInfo.InvariantCulture, " -> {0}", d.Location));