tags:

views:

131

answers:

2

I have a project that relies on several dlls and once I compile it, it requires that I run the .exe in the same folder with the dlls. Can I package them together so I don't have to do that?

For reference, I'm using C#

+3  A: 

You can use ILMerge to combine them into one.

Marc Gravell
can you explain?
Malfist
See, for example, http://www.devsource.com/c/a/Using-VS/Using-ILMerge-to-Combine-Application-Components/
Marc Gravell
A: 

ILMerge

Fredou