fernandreu / office-ribbonx-editor

An overhauled fork of the original Custom UI Editor for Microsoft Office, built with WPF
MIT License
523 stars 103 forks source link

Helpful links don't work in .NET Core #88

Closed fernandreu closed 4 years ago

fernandreu commented 4 years ago

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.