CrashReporter.NET icon indicating copy to clipboard operation
CrashReporter.NET copied to clipboard

Does not include screenshot in report

Open yspak82 opened this issue 4 years ago • 0 comments

  • save report In wpf project.
  • but i can't find screenshot in report.
            base.OnStartup(e);
            AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException;
            Application.Current.DispatcherUnhandledException += DispatcherOnUnhandledException;
            TaskScheduler.UnobservedTaskException += TaskSchedulerOnUnobservedTaskException;
            _reportCrash = new ReportCrash("Email where you want to receive crash reports")
            {
                Silent = true,
                IncludeScreenshot = true,
                ShowScreenshotTab = true,
                CaptureScreen = true,
            };
            _reportCrash.RetryFailedReports();
  • image
  • image
  • image

yspak82 avatar Jun 03 '21 23:06 yspak82