简体   繁体   中英

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.

Mono.Merge

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

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM