Mono 是否有 ILMerge 等效工具?
我正在寻找一个开源工具来将多个 .NET 程序集合并为一个程序集。
I'm looking for a open source tool to merge multiple .NET assemblies into a single assembly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查 ILRepack,它允许合并符号文件、xml 文档、App.config 等。
它是开源的,基于 Cecil。在一个名为 ILRepack-BuildTasks 的项目中还有 NAnt 和 MSBuild 集成
。
Check ILRepack, which allows merge of symbol files, xml documentation, App.config and more.
It's open-source and based on Cecil. There is also NAnt and MSBuild integration for it in a project called ILRepack-BuildTasks
.
mkbundle 和单链接器:
http://www.mono-project.com/Linker
您还可以制作自己的链接器使用塞西尔的工具:
https://github.com/jbevain/cecil/wiki
mkbundle and monolinker:
http://www.mono-project.com/Linker
You can also make your own linker tool using Cecil:
https://github.com/jbevain/cecil/wiki
Mono.Merge
http://evain.net /blog/articles/2006/11/06/an-introduction-to-mono-merge
Mono.Merge
http://evain.net/blog/articles/2006/11/06/an-introduction-to-mono-merge