CrashReporter.NET
CrashReporter.NET copied to clipboard
_reportCrash.RetryFailedReports() blocking the WPF app
Hi @ravibpatel I am using the CrashReporter lib for my WPF project and I face a issue regarding RetryFailedReports(); When i got a crash from app and restarted the app again it is showing the report send popup , and it send the report as well but after that my app is not going further even after sending the report successfully
base.OnStartup(e); AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException; Application.Current.DispatcherUnhandledException += DispatcherOnUnhandledException; TaskScheduler.UnobservedTaskException += TaskSchedulerOnUnobservedTaskException; _reportCrash = new ReportCrash("[email protected]") { Silent = true }; _reportCrash.RetryFailedReports();
CC @ducseb @EddieDemon @milleniumbug @tarekwiz
Have you checked/debugged where the lock happens?