teenup
teenup

Reputation: 7667

Not able to see source code while analyzing dump file in Visual Studio 2012?

I double click on a .dmp file and it opens in Visual Studio 2012.

I have tried specifying the source code directories inside the Properties of the solution as mentioned in this post:

Analyzing Crash dumps in Visual Studio

When I click on "Debug with Mixed", It shows me the exception that occurred and also the line number and file name where exception occurred. But then, it prompts to break the debugging because it can't find the source filesDmp File - specified in project properties

How can I see the source code here and all the variable values?

Upvotes: 0

Views: 576

Answers (2)

bohdan_trotsenko
bohdan_trotsenko

Reputation: 5367

Typically I have the Visual Studio opened with the right solution loaded, then I do File -> Open for the dump file.

Upvotes: 1

Kanishka Khandelwal
Kanishka Khandelwal

Reputation: 134

Make sure that the symbols that you are loading corresponds to the source as well as the dump.

Upvotes: 0

Related Questions