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