I submitted to Windows 10 Store my native
Win32 app that was converted to UWP app using Project Centennial
converter. The app passed store certification and is available via a private link (while I'm testing it.)
While running my tests the app hung up and crashed once. So I was trying to retrieve any usable crash dumps to diagnose the problem.
I logged in to the Windows Dev account, then went to my Dashboard
and sure enough the app was showing one crash:
I then clicked on it. The new Health
page showed the time when the crash took place, market, etc. (Stuff that would not help me debug the issue.)
Then at the bottom I saw this:
I clicked the blue link where it said MOAPPLICATION_HANG_
and it opened up Failure details
window. Then if I scrolled all the way down (past date and time of the hit graph), I see this:
OK. Stack trace is not exactly what I was expecting, but I'll take a look.
So if I click on stack trace
, I get this pop up:
Then if I click download I get a tiny text file stackTrace.tsv
(117 bytes) that literally had this in it:
Is there a way to retrieve a functional mini-dump .dmp
file that I can use in Visual Studio C++ project to analyze this crash with a native
debugger?
You can try this method to create a dump file.
Hope this may be helpful to you.