Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a ILMerge equivalent tool for Mono?

I'm looking for a open source tool to merge multiple .NET assemblies into a single assembly.

like image 543
tgiphil Avatar asked Sep 07 '10 04:09

tgiphil


1 Answers

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 .

like image 151
Gluck Avatar answered Oct 05 '22 06:10

Gluck