A reference implementation of an external crash reporter for desktop applications using the Sentry Native SDK.
- User Consent: Gives the user explicit control over whether their crash data is sent.
- User Feedback: Allows users to add comments to the crash report.
- Crash Information: Displays crash details from the minidump.
- Cross-Platform: Works on Windows, macOS, and Linux thanks to .NET and the Uno Platform.
sentry_options_t *options = sentry_options_new();
sentry_options_set_external_crash_reporter_path(options, "/path/to/Sentry.CrashReporter");
/* ... */
sentry_init(options);