Reputation: 122192
When trying to debug into asp.net identity source, I cloned the source from codeplex and when stepping into the code mapped the Microsoft.AspNet.Identity.EntityFramework
to my /code/aspnetidentity
directory.
I think I made a mistake however in cloning that repo - it seems incomplete. I found a different one on github and have it at /code/Identity
. However, I have no idea where the mapping from assembly to source code directory is stored so that I can change it.
Where is it?
Upvotes: 0
Views: 1170
Reputation: 6436
Not very sure that why it was empty, but the symbol file contains the original location of the source files, so one idea is that you could use certain tool like Windbg or others to really find and read the source file:
How do I change the locations of source files in a symbols file (pdb)
Get the original source code location for an assembly
Upvotes: 1