Invoke default browser on Windows

This commit is contained in:
Sami 2017-11-16 00:10:58 +01:00
parent de9102f38a
commit 7601ba45de
1 changed files with 9 additions and 15 deletions

View File

@ -132,22 +132,16 @@ namespace Ooui
static Process StartBrowserProcess (string url)
{
var cmd = url;
var args = "";
// var vs = Environment.GetEnvironmentVariables ();
// foreach (System.Collections.DictionaryEntry kv in vs) {
// System.Console.WriteLine($"K={kv.Key}, V={kv.Value}");
// }
var osv = Environment.OSVersion;
if (osv.Platform == PlatformID.Unix) {
cmd = "open";
args = url;
}
// Console.WriteLine ($"Process.Start {cmd} {args}");
// var vs = Environment.GetEnvironmentVariables ();
// foreach (System.Collections.DictionaryEntry kv in vs) {
// System.Console.WriteLine($"K={kv.Key}, V={kv.Value}");
// }
// Console.WriteLine ($"Process.Start {cmd} {args}");
return Process.Start (cmd, args);
}
return Environment.OSVersion.Platform == PlatformID.Unix
? Process.Start ("open", url)
: Process.Start (new ProcessStartInfo (url) { UseShellExecute = true });
}
}
}