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.
Asked
Active
Viewed 2,486 times
3 Answers
7
monomerge -out output.exe input.exe input_lib.dll

Darin Dimitrov
- 1,023,142
- 271
- 3,287
- 2,928
-
can you give an example how to use it? – oshai Sep 19 '10 at 09:27
-
The blog post I've linked to already does provide an example. – Darin Dimitrov Sep 19 '10 at 09:29
5
There is ilmerge for windows: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=22914587-b4ad-4eae-87cf-b14ae6a939b0&displaylang=en

cichy
- 10,464
- 4
- 26
- 36
1
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

o3o
- 1,094
- 13
- 23
-
-
It's no so new..see http://www.mono-project.com/Guide:Running_Mono_Applications for details – o3o Feb 16 '11 at 09:14