Update Diagnostics.cs

This commit is contained in:
pointfeev 2023-05-30 13:41:45 -04:00 committed by GitHub
parent 2fbb792a5e
commit 6c5a36587e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,5 +42,5 @@ internal static class Diagnostics
internal static void OpenUrlInInternetBrowser(string url) => Process.Start(new ProcessStartInfo { FileName = url, UseShellExecute = true });
internal static string BeautifyPath(this string path) => path is null ? null : Path.TrimEndingDirectorySeparator(Path.GetFullPath(path));
}
internal static string BeautifyPath(this string path) => path is null ? null : Path.TrimEndingDirectorySeparator(Path.GetFullPath(path)).ToLowerInvariant();
}