How do you automate a Visual Studio build?

build-automation, visual-studio

Solution

With VS2008 you can do this:

devenv solution.sln /build configuration

Problem

How do you turn a Visual Studio build that you'd perform in the IDE into a script that you can run from the command line?

Original source

Related problems