Update Diagnostics.cs
This commit is contained in:
parent
2fbb792a5e
commit
6c5a36587e
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue