BernhardMarconato
BernhardMarconato
@niels9001 This issue is then probably also fixed in Windows App SDK 1.8 (Issues https://github.com/microsoft/microsoft-ui-xaml/issues/10357 / https://github.com/microsoft/microsoft-ui-xaml/issues/10067 / https://github.com/microsoft/microsoft-ui-xaml/issues/10529 and https://github.com/microsoft/microsoft-ui-xaml/issues/10572 seem to be related as was mentioned above.)
Still reproducible in Windows App SDK 1.5.3: 1.5.240428000. Also with TextBox and I-Beam cursor: 
It looks like some first tests are being done in [#4297](https://github.com/getsentry/sentry-dotnet/pull/4297). An alternative to an [unhandled exception filter](https://learn.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-setunhandledexceptionfilter) (which doesn't seem to work) could be using the [WerRegisterRuntimeExceptionModule](https://learn.microsoft.com/en-us/windows/win32/api/werapi/nf-werapi-werregisterruntimeexceptionmodule) API. It...
I can see your point regarding maintenance effort. But to clarify, this approach would work with all Windows apps (C++, .NET, etc.) and would avoid dependency on Crashpad. The MSIX...
@bruno-garcia Yes, I fully understand that resources are limited here. I'll see what can be done, maybe in a proof of concept state. Crashpad works for the mentioned apps when...
I've added a WER backend to [Sentry Native in my fork](https://github.com/BernhardMarconato/sentry-native/tree/feature/wer-handler-backend), giving another option besides Crashpad. As described in previous comments, it can handle any kind of exception, including fast-fail...
I tried it today from a C# WinUI 3 app, and it generally works (the dump is created and uploaded). I provoked a fastfail crash with `Environment.FailFast()` when clicking on...
I added a [simple .NET test app repo](https://github.com/BernhardMarconato/SentryDotNetNativeCrash) where native crash handling can be reproduced, together with my "experimental" [sentry-native fork](https://github.com/BernhardMarconato/sentry-native/tree/feature/wer-handler-backend). A readme with instructions can be found there. The...
We are also interested in this feature (see https://github.com/getsentry/symbolicator/issues/1731).
It looks like the issue is fixed. Thanks!