-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WPF Desktop bridge app does not report crashes to the AppCenter #1742
Comments
Hi @marekdovjak , thank you for this report. I believe it is a duplicate of #1727. We already merged the fix and currently preparing the release. It should be available today or tomorrow. |
@DmitriyKirakosyan I don't think it's duplicate. For wpf app, everything is working well. We have problems when packaging the wpf app with Windows Desktop Bridge. After upgrading the AppCenter SDK to 5.0.2, problem still persits |
Thank you for testing on new version and confirming the issue persists. We will investigate it. You mentioned that using |
Hello, I tried to reproduce your error, but when running a WPF application using Windows Application Packaging, crashes are successfully sent to the AppCenter portal. For further investigation, a small demo application that reproduces your error would be very useful to us. |
@MikhailSuendukov I realized that the steps I wrote to reproduce the problem were not complete. You have to use the Target Framework Moniker option. So instead of There's simple demo app in the attachment. With the moniker option, crashes are not reported. |
Thank you very much for your demo app, indeed your bug is reproducible on this app. In that case, I will create a work item on our board and keep you updated on progress. |
The fix was released, so I'm closing it. |
@DmitriyKirakosyan I did a quick test with the sample app I provided earlier and appcenter 5.0.3 - it still doesn't work with the target WapProjTemplate1 (desktop bridge). |
Hi, I was able to reproduce the error, apparently the SDK incorrectly determines the type of the wrapped application, so I created a draft pull request to fix the bug. |
when is the next release with this bug fix planned? |
1 similar comment
when is the next release with this bug fix planned? |
I am encountering the same issue. The project, packaged as a WPF and uploaded to the Microsoft Store, can collect reports in its pure WPF form, but once packaged with the Desktop Bridge, it no longer can. |
Hello, the AppCenter .NET SDK v5.0.4 has been released, including a fix for this issue. Therefore, I am closing this issue. |
@MikhailSuendukov
|
@sebaJoSt |
I already tried again. My app update with 5.0.4 was released on June 4th and it still not appeared in AppCenter. |
@sebaJoSt |
@MikhailSuendukov |
@sebaJoSt |
@MikhailSuendukov |
@sebaJoSt |
Description
We have a WPF application, which is distributed in the MSStore using the Windows Desktop bridge. While the application is tested as pure WPF app, it's properly reporting crashes to the AppCenter. But after packaging the exact same app using the Desktop bridge, crashes are no logner reported.
After enabling the Verbose log level and generating test crash, I can see there are 0 crash reports detected. I also checked the Logs.db file in user's AppData folder, table LogEntry doesn't contain any crash reports. It contains few core/analytics records, which are correctly sent to the AppCenter after running the app.
Repro Steps
Details
Platform: Win10, WPF, NET 7.0, Desktop Bridge
SDK version 5.0.2
OS: Windows 10/11
Visual Studio Version 17.6.0
Workaround
I used the
DispatcherUnhandledException += App_DispatcherUnhandledException;
andas recommended in this issue #1727, so crashes are reported as errors now.
The text was updated successfully, but these errors were encountered: