tags:

views:

31

answers:

2

I'm looking for a open source tool to merge multiple .NET assemblies into a single assembly.

+1  A: 

Mono.Merge

http://evain.net/blog/articles/2006/11/06/an-introduction-to-mono-merge

Pierre 303
Unforunately, that project was never completed and is no longer active.
tgiphil
A: 

mkbundle and monolinker: http://www.mono-project.com/Linker

You can also make your own linker tool using Cecil: http://wiki.github.com/jbevain/cecil/

Zac Bowling