views:

61

answers:

2

Can somebody provide an example to build a C++ VS solution from command line

A: 

In VS 2003, 2005 and 2008 - msbuild [solutionfile].sln

Tadas
.vcproj file might need a few changes to use it with msbuild
AB Kolan
A: 

You coud also do something like this:

devenv.exe SolutionName /build

See this page on MSDN for more info

Matt Warren