Info
Version: | 1.0.0.2 |
Author(s): | David Liaw |
Last Update: | Sunday, January 3, 2021 |
.NET Fiddle: | Create the first Fiddle |
NuGet Url: | https://www.nuget.org/packages/DumpWriter |
Install
Install-Package DumpWriter
dotnet add package DumpWriter
paket add DumpWriter
DumpWriter Download (Unzip the "nupkg" after downloading)
Dependencies
.NETStandard 2.0
No dependencies.
No dependencies.
Just add this 2 line of code:
Application.ThreadException += (sender, args) => MiniDump.Writer.SendReport("crash");
AppDomain.CurrentDomain.UnhandledException += (sender, args) =>
{
MiniDump.Writer.SendReport("crash");
};.