You can add links to libraries only in the source folder only to start the project:
1) Right-click on the start of the project, Add "," Existing Item ". Or the combination of [Shift]+[Alt]+[A] in VS2010 with default values.
2) Change the selector type to " All files (*) ", find and select your library.
3) Change the "Add" selector to " Add As Link " and press it.
4) Select the link added to the project, and in the "Properties" window, set " Copy to Output Directory " to " Copy always ". Now, every time you create a solution, this library will be copied to the output folder of your startup project.
5) If you want to limit the copying of this DLL to the output of the project that uses it, right-click the link in this project, and in the properties window set " Copy Local " to false.
Effects:
The only place your dll link will be displayed will be your startup project output directory.
Disadvantages:
If you change your initial project, you will need to add all the links to it again.
The catalog of running projects in Solution Explorer becomes messy.
astef source share