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)
172var location = string.IsNullOrEmpty(diag.Location) ? "" : $" [{diag.Location}]"; 262foreach (var d in capabilities.Diagnostics.OrderBy(d => d.Severity).ThenBy(d => d.Location)) 264var loc = string.IsNullOrEmpty(d.Location) ? "" : string.Format(CultureInfo.InvariantCulture, " [{0}]", d.Location); 364foreach (var d in capabilities.Diagnostics.OrderBy(d => d.Severity).ThenBy(d => d.Location)) 368if (!string.IsNullOrEmpty(d.Location)) 370sb.AppendLine(string.Format(CultureInfo.InvariantCulture, " -> {0}", d.Location));