I have several solutions, each containing multiple projects, that all need to reference a single assembly, say, lib.dll.
This contains common classes and functionality which needs to be accessed between all the solutions; and I can't bring all the projects into one solution as my manager wants to be able to use different versions of lib.dll between different solutions. I am also stuck on VSS and 2005 for the moment (sympathy votes?).
Currently, I'm having to redo references in all the projects in the solution manually; what I really want to be able to do is to have everything in one place, but obviously the GAC is out for this.
Is there any way for me have, say, a dummy project which can be referenced by all the other projects in a particular solution which, when referenced, will provide lib.dll?
Am I barking up the wrong tree here?