These are absolutely fine when using .NET Framework.
This is due to using Process.Start(url) to launch those websites in a browser. In .NET Core, an exception occurs:
System.ComponentModel.Win32Exception: 'The system cannot find the file specified.'
Either it is trying to open the url as a file, or it does not find a browser to launch them. Should be a fairly common scenario and with a searchable solution.
These are absolutely fine when using .NET Framework.
This is due to using
Process.Start(url)
to launch those websites in a browser. In .NET Core, an exception occurs:Either it is trying to open the url as a file, or it does not find a browser to launch them. Should be a fairly common scenario and with a searchable solution.