oshai
oshai

Reputation: 15365

how to pack few .NET dll's into one dll

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

Answers (3)

o3o
o3o

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

Darin Dimitrov
Darin Dimitrov

Reputation: 1039130

Mono.Merge:

monomerge -out output.exe input.exe input_lib.dll

Upvotes: 7

Related Questions