ilmerge 是否优化了输出?
我有许多使用 Microsoft 的 ILMERGE.EXE 工具合并的 DLL。 所有 DLL 都未选中“优化我的代码”。
当尝试在 Web 应用程序中调试代码时,模块屏幕(在 Visual Studio 中)显示 dll 已被优化。 当尝试调试应用程序的某些部分时,这显然会导致问题。
有没有一种使用 ILMERGE 构建 DLL 且不优化代码的方法?
I have a number of DLLs that are merged using the ILMERGE.EXE tool from Microsoft. All the DLLs have 'optimize my code' unchecked.
When trying to debug code in a web application the modules screen (in Visual Studio) shows the dll has been optimized. This obviously causes a problem when trying to debug certain parts of the application.
Is there a way of building a DLL using ILMERGE which does not optimize the code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
/copyattrs
-属性添加到 ILMERGE 命令行。Add the
/copyattrs
-Attribute to the ILMERGE command line.ILMerge 有一个合并 PDB 的选项,如果您使用它,您将能够通过代码进行调试。
请参阅 Scott Hanselman 博客上的此博文和讨论
另请参阅 ILMerge Gui 用于集成了此功能的 UI
ILMerge has an option to merge PDBs if you use it, you will be able to debug through your code.
See this blog post and discussion on Scott Hanselman's blog
Also see ILMerge Gui for a UI that has this integrated