Is there a way to have one project build another in Visual Studio?

Posted by Martin Neal on Stack Overflow See other posts from Stack Overflow or by Martin Neal
Published on 2010-05-26T00:05:38Z Indexed on 2010/05/26 0:11 UTC
Read the original article Hit count: 160

We are finally getting a source control system in place at work and I've been in charge of setting it up. I've read that it's usually good practice to not include binaries in source control so I haven't. However, we have two all-purpose utility projects (each in their own solution) that generate utility .dll's which are included in almost all of our other projects (all each in their own separate solutions). We add references to the utility dll from our projects.

I would like to have our solutions set up in such a way that if the reference dll isn't built, the solution will build the dll for itself, much in the same way a make file checks for its dependencies and builds them when they're out of date or missing.

I'm new to build processes with VS so try to keep the answers simple. Any links to general build process overview tutorials would be great too. Googleing for VS references returns a bunch of how-to add references links which is not exactly what I want.

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about build-process