views:

325

answers:

3

I am wondering what to include when building my project. I have a library I need to reference for my project to build but that library has 10 dependencies itself. Should I reference those dependencies as well or should I copy them to the output directory using a post build event?

What is the best practice?

I find it confusing to include all those dependencies as the project compiles fine without them - are they then called runtime dependencies? My references become cluttered with dependencies irrelevent to my project even though they are used in some library I am including.

I am using Visual Studio.

Can someone please give me some insight into how to do this right.

Thanks.

+1  A: 

It's just opinion. Either way will work.

Personally I hate post-build BAT files, so I would include the dependencies to get them copied to the output directory.

Another option is to put a link to them in your project - like in a resources directory. Have this set to BuildAction=None, and CopyToOutputDirectory=CopyIfNewer

GeekyMonkey
+1  A: 

I suppose you are working in Visual Studio.

The short answer is to include only the assemblies needed for your project to compile.

Referencing more assemblies should not cause any problems, for your application will load assemblies when needed at run time, but having a long list of references can get confusing and messy.

Your list of references should tell about what your program does and what functions it uses.

Rune Grimstad
So you recommend using post build events or some other way to provide the runtime dependencies for the libraries I am referencing?
Fadeproof
Well, it is a matter of taste really. If your assemblies are in the GAC you don't need to do anything, but I would prefer not cluttering the project.
Rune Grimstad
None are in GAC so in that case should I use the post-build event?
Fadeproof
+1  A: 

You only need to add references that are directly used by your project.

For private assemblies (those not in the GAC) Visual Studio will, by default, copy referenced assemblies (and their dependencies) to your project's output directory.

For assemblies in the GAC Visual Studio doesn't copy the referenced assembly to your project's output directory by default.

In both cases you can change the behavior by changing the "Copy Local" reference property.

IMHO, it's a nifty feature of the build environment. In the unmanaged world it's up to you to keep track of your dependencies' dependencies (usually through pre or post build events).

Arnshea