I my project I'm using some 3rd party librarys. I include them using the references folder in the Visual Studio.

But where should i save the dlls files? They are referenced from a path in the file system, but itwould be nice if I can include it into the project. But how?

How the quesiton is more or less clear ;)

link|improve this question

feedback

8 Answers

up vote 21 down vote accepted

This is what I do:

  • Create a lib folder at the solution level
  • Download and copy all my 3rd party DLLs into there
  • Reference from the lib folder
  • Put all those DLLs in the source control. I am using subversion and I add them manually but this is one-off.

You can also add solution folder and add them there.

link|improve this answer
1  
+1 for the reminder to add them to the source control... It should be obvious, but its often overlooked. – Heiko Hatzfeld Nov 25 '10 at 13:29
2  
Same procedure as we use where I work. Important to add to source control to make sure that it will work for all other developers also. – Øyvind Knobloch-Bråthen Nov 25 '10 at 13:38
Cheers, I've been mulling this question over for a few days but that seems like solid advice. – deanvmc Jun 2 '11 at 12:53
feedback

Typically, the structure of my projects looks like this (at a minimum):

projectname
   - trunk
       - src
       - lib
   - support
       - docs
   - releases

The trunk folder contains the copy of the source that I am working on right now. Also, there's a directory 'lib', which contains all the 3rd party assemblies that are referenced by my project.
(I reference the assemblies at that position).

The 'releases' folder contains branches of the trunk. For instance, whe v1 is released, a branch is taken of the trunk so that I have a copy of the sourcecode and all its dependencies that is necessary to build version 1 of the application. (This is handy for bugfixes. Fix the bug in that branch, merge the fix to the trunk, rebuild that branch and you have a fixed v1 of your application).

All these things go into sourcecontrol. (Yes, the referenced assemblies as well). By doing so, it is very easy if another collegue has to work on the project as well. He just gets the latest version from source-control, and he (or she) has everyting in place in order to be able to compile / build).

(Note that this is also true if you use something like CruiseControl for continuous integration).

link|improve this answer
2  
+1. JAVAesque but good :) – Aliostad Nov 25 '10 at 13:28
Why is it 'JAVA-esque' ? I mean, I think it's a good practice in all environments. :) – Frederik Gheysels Nov 25 '10 at 13:29
+1 for "JAVAesque" ;) – AB Kolan Nov 25 '10 at 13:30
feedback

You should look at nuget. It's a package management extension for VS2010 designed exactly for what you want.

link|improve this answer
feedback

In the properties window of Visual Studio for the reference to the dll, there is a Property called 'Copy Local' - set this to true, and they'll be copied to your local project's bin directory

link|improve this answer
feedback

Do have a look at Tree Surgeon - Creates a development tree for a .NET project, which can be a good starting point and from there you can improvise.

link|improve this answer
Exactly what I was looking for, thanks for the link – NicoGranelli May 3 '11 at 15:48
feedback

Personally, I have a folder in my source control for 3rd party DLLs (with a folder for each company, organisation) and reference them from there.

These files are then available for all developers who download the source and can be updated easily.

link|improve this answer
feedback

To answer this properly you need to differentiate between the environment and working set.

Environment:

  • This is all the tools and libraries required to build your solution.
  • Things in the environment are expected to stay reasonably constant.
  • Things in the environment are usually versioned and you should be able to have multiple versions side by side.
  • Things in the environment are usually licensed.
  • Environment is not under source control.
  • A good example would be Visual Studio.

Working Set:

  • This is basically your source code.
  • It is all the requirements needed to get to your final executable.
  • You shuold expect the working set to change a lot during development.
  • The working set should be under source control.

You need to decide into which category your component fits.

link|improve this answer
feedback

Take a look at NuGet (package manager for Visual Studio)...

NuGet is a Visual Studio extension that makes it easy to install and update open source libraries and tools in Visual Studio.

Then read this NuGet doc to get the crème de la crème:

Using NuGet without committing packages to source control

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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