Reputation: 24447
My understanding is that it is not possible to deploy symbols to an UWP app. In the *.appxupload there is a file *.appxsym which contains *.pdb files. But this files will not deploy to the client on installation. Is this right?
Is there any tool that can add line numbers later to a stacktrace with the existing *.pdb files?
Upvotes: 1
Views: 214
Reputation: 32775
How to add line numbers to stacktraces in UWP apps?
You could use HockeyApp
to capture the exception call stack, exception message, exception type name, file name and line number which caused a crash in the app. For more detail please refer this document.
Please note: In order to symbolicate crashes for .NET UWP applications you need to upload symbol (*.pdb) files
Upvotes: 1