4

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.

oshai
  • 14,865
  • 26
  • 84
  • 140

3 Answers3

7

Mono.Merge:

monomerge -out output.exe input.exe input_lib.dll
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
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