8 references to Location
aspire (8)
Commands\Sdk\SdkDumpCommand.cs (8)
178
var location = string.IsNullOrEmpty(diag.
Location
) ? "" : $" [{diag.
Location
}]";
268
foreach (var d in capabilities.Diagnostics.OrderBy(d => d.Severity).ThenBy(d => d.
Location
))
270
var loc = string.IsNullOrEmpty(d.
Location
) ? "" : string.Format(CultureInfo.InvariantCulture, " [{0}]", d.
Location
);
370
foreach (var d in capabilities.Diagnostics.OrderBy(d => d.Severity).ThenBy(d => d.
Location
))
374
if (!string.IsNullOrEmpty(d.
Location
))
376
sb.AppendLine(string.Format(CultureInfo.InvariantCulture, " -> {0}", d.
Location
));