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
- Docs change / refactoring / dependency upgrade
- Bug fix (non-breaking change which fixes an issue)
- New feature (non-breaking change which adds functionality)
- Breaking change (fix or feature that would cause existing functionality to change)
Checklist
- My change requires a change to the documentation.
- I have added tests to cover my changes.
- All new and existing tests passed.