Apparently .NET Core is sort of broken when it comes to opening a URL via Process.Start. Normally you’d expect to do this:
Process.Start("http://google.com") And then the default system browser pops open and you’re good to go. But this open issue explains that this doesn’t work on .NET Core. So instead you have to do this (credit goes to Eric Mellino):
This was an intentional breaking change in .Net Core. Specifically, UseShellExecute, which is required to be true for your code to work, defaults to true on .Net Framework, but it’s false on .Net Core. This means the following code will work on both frameworks: