I have three solutions which build two clients and a server, and share many libraries. I would like to be able to combine these into a "master" solution that builds all the necessary projects.
For various reasons, which perhaps deserve a question of their own, some of the shared libraries are linked statically (.lib only) to one application and dynamically (.lib + .dll) to another application. So a build would actually require building two separate configurations of a single project. It looks like the VS dependencies don't handle this case, but I thought I would see if anyone else has already solved this.