Understanding UWP Stack Traces with .NET Native Tooling

I published a UWP app to a crash analytics repository and I'm trying to figure out how to "decrypt" the "stack of stacks", this is what I got:

 PagesManager!<BaseAddress>+0xcfdd01 at
 SharedLibrary!<BaseAddress>+0x38449f at
 SharedLibrary!<BaseAddress>+0x3842cd Exception_EndOfInnerExceptionStack at
 SharedLibrary!<BaseAddress>+0x384405 at
 SharedLibrary!<BaseAddress>+0x3bd80d at
 SharedLibrary!<BaseAddress>+0x3c1f45 at
 PagesManager!<BaseAddress>+0xd18017 at
 SharedLibrary!<BaseAddress>+0x2f87a7 at
 SharedLibrary!<BaseAddress>+0x2f877d at
 SharedLibrary!<BaseAddress>+0x3844c7 at
 SharedLibrary!<BaseAddress>+0x3842ab

      

I have searched all over the place and tried to use windbg and cvdump without any success, these posts are old too, so I must however be a different solution.

Any idea how I can get the actual stack and not that I have the pdbs files (downloaded from dev center) and all the intermediate build files.

thank

+3


source to share





All Articles