简体   繁体   中英

Generate PDB from .NET DLL file?

我需要可以从 DLL 文件(C# .NET 代码)生成 PDB 的东西,有没有免费程序可以做到这一点?

Actually you can do it also with dotPeek from 1.2 version onward.

Right click the assembly in Assembly Explorer, and select "Generate Pdb". It also has the option to generate files for referenced assemblies all at once.

在此处输入图片说明

Even you have no sources and code obfuscated, you can create pdb by recompile with ildasm and ilasm:

  • decompile assembly by ildasm : ildasm /out=assembly_name.il assembly_name.dll
  • complile with ilasm : ilasm assembly_name.il /dll /pdb

PDB contains debug symbols related to DLL, and would normally be built together with the DLL. To enable generating pdb files go to project Properties , Build tab, Advanced... button and select in Debug Info field "pdb-only" or "full":

Visual Studio 生成 PDB

If you need to debug a thirdparty assembly without sources, then dotPeek and ReSharper will be extremely helpful having an option to generate PDB from DLL. In ReSharper, this can be done through ReSharper > Windows > Assembly Explorer by opening necessary assembly and clicking " Generate Pdb... ":

Resharper 生成 PDB

You can use ILSpy . This is the handy free app for disassembling and generating pdb for managed dll's.

您需要源代码才能生成 PDB。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM