Fixed Exception Caused By Privacy Policy URL in Crash Reporter by MeharDT · Pull Request #1878 · stride3d/stride (original) (raw)

PR Details

Clicking the Privacy Policy link in the Crash Reporter will generate an exception.

Description

The Process requires shell execute to be enabled, this was the default setting in .NET Framework but is no longer the case with .NET Core.

This PR can be tested by adding the following to Main() in Stride.GameStudio/Program.cs,

            try
            {
                throw new Exception("Test");
            }
            catch (Exception ex)
            {
                HandleException(ex, 0);
            }

Types of changes

Checklist