c# – How to understand Visual Studio App Center crash stacktraces
Recently I set up Visual Studio App Center’s crash logging on my UWP app which is published on the Microsoft Store.
I noticed that my app crashed a few times on App Center’s dashboard, but I don’t understand how those “stack traces” shown on the dashboard can be useful to me. They do not contain any line numbers and therefore I can’t know where exactly the bug is in my app.
I also uploaded my app’s symbols to Visual Studio App Center.
Here’s a screenshot of the crash from Visual Studio App Center’s dashboard:

I can understand that the exception was thrown in the doLoginAsync method, but that method is complex and I need more details about where the exception occurred.
How can I understand where exactly is the problem from Visual Studio App Center’s crash stack traces?
Read more here: Source link
