views:

231

answers:

2

I have a .net application with about 10 assemblies. It would be nice to have them all together as a single assembly. Is this possible? How do I do it?

I guess something like a jar file for java applications.

Thanks

+11  A: 

Try ILMerge.

Andy West
+5  A: 

ILMerge is the tool you're looking for:

ILMerge

Kev