获取程序集类型的物理位置
可能似乎是与 GetReferencedAssembly 位置类似的问题,但我的问题正在获取这些引用的程序集中类型的物理位置。 我可以从 pdb 获取信息吗?或者我可以使用塞西尔吗?
最终我的目标是搜索指定程序集的关键字,并列出使用该关键字的所有文件[.cs/.fs/.vb]。
May seem to be a similar question to GetReferencedAssembly locations, but my question is getting physical locations of the types in those referencedAssemblies.
Can I get information from pdb? Or can I use cecil?
Ultimately my goal is search for a keyword for a specified assembly, and list all the files [.cs/ .fs/ .vb] that uses this keyword.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里是一个有趣的博客,如何从 pdb 文件中提取 xml 信息
希望这会有所帮助!
Here is a interesting blog how to extract that information as xml from pdb files
Hope this helps!
为此,您将需要一个 PDB 解析器。我知道 .NET Massdownloader 有一组在 DownloadLibrary 下执行此操作的类.Classes.PdbParsing。
You will need a PDB Parser for that. I know that .NET Massdownloader has a set of classes that do that under DownloadLibrary.Classes.PdbParsing.