I am using Team Foundation as source control for a solution with eight C# projects. In order to enforce decoupling and stability, I have only enabled dependencies between the project and their tests.
What I would like to do is create a common folder where the compiled libraries and external tools can be placed and shared across the solution to all of the projects. The problem is that Solution Folders seem to be virtual, and even if they weren't there are still a few other problems such as relative pathing and keeping the DLLs updated in TFS source control.
So my question is, is it possible to create a common folder containing libraries that all of the projects in the solution can reference with a relative path and still capable of being controlled by TFS?
Thanks in advance!