I have UWP App associated with hockey app, in the crash analytics I am getting exception logs as Exception Type: System.NullReferenceException
and it's also mentioning method name in which that exception was fired.
Is there any way to get the exact line number which throws that exception inside that method?
In order to symbolicate crashes for .NET UWP applications you need to upload symbol (*.pdb) files to HockeyApp
. Follow the instructions to upload symbols for UWP application.
Symbol files (*.pdb) are created from the source code during compilation, they contain the information required to translate memory address to human readable format (like file name / line number).