I have a dll project which uses some third party dlls. I would like the compilation result to be just one big dll with all the third party dlls included in it. How can I do this in Visual Studio 2010?
|
|
You need to use ILMerge, assuming the DLLs are all managed: http://www.microsoft.com/en-us/download/details.aspx?id=17630 And some related questions: |
|||
|
|
|
There are several approaches that you can take here to achieve this. Here are a couple:
|
|||
|
|
|
ILMerge is a .NET only solution (does not work for unmanaged dlls) A nice tool is NETZ (.net executable compresser and packer) which compresses all your dependencies in a single exe / dll file. I have not used it recently so I can't tell if it is compatible with .NET 4.0 And it didn't get many updates in a while but I would give it a try. |
|||
|
|