Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find corresponding .pdb inside .NET assembly?

Apparently, when a .NET assembly is created the location of the corresponding .pdb file path is included inside. Link for reference: https://msdn.microsoft.com/en-us/library/ms241613.aspx

How do I access this? I have tried using ILSpy to look inside my assembly but could not find.

like image 986
Andrew Pham Avatar asked Aug 08 '16 05:08

Andrew Pham


1 Answers

You can use the dumpbin tool from a Developer Command Prompt, e.g. a cmd line like this

dumpbin /HEADERS YourAssembly.exe   

would show the path to the PDB file in the Debug Directories section similar to this

Microsoft (R) COFF/PE Dumper Version 14.00.24213.1
Copyright (C) Microsoft Corporation.  All rights reserved.


Dump of file YourAssembly.exe

...


  Debug Directories

        Time Type        Size      RVA  Pointer
    -------- ------- -------- -------- --------
    570B267F cv           11C 0000264C      84C    Format: RSDS, {241A1713-D2EF-4838-8896-BC1C9D118E10}, 1,  
    C:\temp\VS\obj\Debug\YourAssembly.pdb

...
like image 122
DAXaholic Avatar answered Oct 02 '22 13:10

DAXaholic