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