Reputation: 15365
I have few dll's of c# code and I want to pack it to one dll. I am looking for something like ilmerge in linux. Do anyone know an alternative? Thanks, Ohad.
Upvotes: 4
Views: 2569
Reputation: 1058
You can use mkbundle:
$ mkbundle -o output.dll a1.dll a2.dll a3.dll
output.dll will contain a1.dll, a2.dll and a3.dll
Upvotes: 1
Reputation: 10644
There is ilmerge for windows: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=22914587-b4ad-4eae-87cf-b14ae6a939b0&displaylang=en
Upvotes: 5