A simple .NET Core 3.1 console application for testing crash handling.
To produce a crash, simply run the following commands with a .NET Core 3.1.x SDK installed:
> git clone https://github.com/martincostello/Crasher.git
> cd Crasher
> dotnet run
Process is terminating due to StackOverflowException.
>For portability on other machines, run the following commands:
> git clone https://github.com/martincostello/Crasher.git
> cd Crasher
> dotnet publishThe default runtime identifier is win-x64. To use another RID, use the --runtime flag; for example:
> git clone https://github.com/martincostello/Crasher.git
> cd Crasher
> dotnet publish --runtime linux-x64Any feedback or issues can be added to the issues for this project in GitHub.
The repository is hosted in GitHub: https://github.com/martincostello/Crasher.git
This project is licensed under the Apache 2.0 license.