diff --git a/src/ViewModels/AboutViewModel.cs b/src/ViewModels/AboutViewModel.cs index c8408d3..be4a97c 100644 --- a/src/ViewModels/AboutViewModel.cs +++ b/src/ViewModels/AboutViewModel.cs @@ -44,7 +44,11 @@ private void OpenUrl(string url) { if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { - Process.Start("cmd", $"/C start {url}"); + //https://stackoverflow.com/a/2796367/241446 + using (Process proc = new Process {StartInfo = {UseShellExecute = true, FileName = url}}) + { + proc.Start(); + } } else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) {