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