I'm scripting the checkout, build, distribution, test, and commit cycle for a large C++ solution that is using Monotone, CMake, Visual Studio Express 2008, and custom tests.

All of the other parts seem pretty straight-forward, but I don't see how to compile the Visual Studio solution without getting the GUI.

The script is written in Python, but an answer that would allow me to just make a call to: os.system would do.

link|improve this question

feedback

4 Answers

up vote 30 down vote accepted

I know of two ways to do it.

Method 1
The first method (which I prefer) is to use msbuild:

msbuild project.sln /Flags...

Method 2
You can also run:

vcexpress /build project.sln /Flags...

The vcexpress option returns immediately and does not print any output. I suppose that might be what you want for a script.

Note that DevEnv is not distributed with Visual Studio Express 2008 (I spent a lot of time trying to figure that out when I first had a similar issue).

So, the end result might be:

os.system("msbuild project.sln /p:Configuration=Debug")

You'll also want to make sure your environment variables are correct, as msbuild and vcexpress are not by default on the system path. Either start the Visual Studio build environment and run your script from there, or modify the paths in Python (with os.putenv).

link|improve this answer
feedback

MSBuild usually works, but I've run into difficulties before. You may have better luck with

devenv YourSolution.sln /Build 
link|improve this answer
MSBuild doesn't work with Visual Fortran projects ( *.vfproc ). Thanks for pointing me towards devenv, which does. – Maik Beckmann Oct 1 '10 at 12:44
I'm having to use: devenv YourSolution.sln /Build but worked great thanks. – bobwah May 16 '11 at 10:49
2  
You can also specify the config:devenv YourSolution.sln /Build Debug – Josh Stribling Feb 24 at 23:57
feedback

msbuild is your friend.

msbuild "C:\path to solution\project.sln"
link|improve this answer
I've seen that fail in odd situations due to differences in how MSBuild and DevEnv process .sln files. – Jeffrey Hantin Jan 31 '09 at 2:57
feedback

Check out MSBuild

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.