vote up 5 vote down star
2

Hi, I'm building a .NET DLL Class Library which depends on other libraries such as log4net.dll - where should I put these DLLs when packaging up my DLL? Is there a way to automatically include them inside one super-DLL? Should I just ship all the DLLs in a single bin folder?

flag

5 Answers

vote up 6 vote down check

Just ship them all in a directory with your dll (assuming you're talking about a binary distribution - in a source distribution I'd have a "lib" directory containing your dependencies).

Don't forget to check whether or not you need to also supply licences, directions to get the source etc.

I wouldn't be tempted to try to merge your class library with the dependencies, personally.

link|flag
1  
I actually did what you said not to do in your last statement there. Made my project very messy and confusing looking with that extra source. So, I just un-merged them. :) – Zack Aug 12 at 17:59
vote up 0 vote down

in your solution tree, have a folder called 'src' for all yoru source code and one called 'lib' for libraries such as log4net, your homemade dll library, and any other libraries.

link|flag
vote up 5 vote down

You need to check the EULA and other licenses attached to those other DLL's first. Some may restrict how their DLL libraries are redestributed. Assuming no issues with that, you can either compile them all together as one big DLL, or create an installer (or a simple zip file) that will install all the associated DLL's in their intended destination.

link|flag
vote up 0 vote down

You should take a look at ILMerge. I linked a blog that shows an usage of ILMerge

Leveraging ILMerge to simplify deployment and your users experience

link|flag
vote up 0 vote down

Not sure how you are deploying your solution, but don't forget that in order to sign your class libraries you'll need to have your 3rd-party .dlls signed. This alone might require you to merge all your references.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.