Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

.net

mono

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.

like image 304
oshai Avatar asked Dec 13 '22 19:12

oshai


2 Answers

Mono.Merge:

monomerge -out output.exe input.exe input_lib.dll
like image 178
Darin Dimitrov Avatar answered Dec 15 '22 09:12

Darin Dimitrov


There is ilmerge for windows: http://www.microsoft.com/downloads/en/details.aspx?FamilyID=22914587-b4ad-4eae-87cf-b14ae6a939b0&displaylang=en

like image 21
cichy Avatar answered Dec 15 '22 07:12

cichy