vote up 6 vote down star
3

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?

Update: To those also looking for the answer to this question, please check the Related box to the right as several similar questions have been asked.

flag

8 Answers

vote up 5 vote down check

With VS2008 you can do this:

devenv solution.sln /build configuration
link|flag
This way always seems the easiest. – Aardvark Sep 25 '08 at 22:53
vote up 9 vote down
\Windows\Microsoft.NET\Framework\[YOUR .NET VERSION]\msbuild.exe

Lots of command line parameters, but the simplest is just:

msbuild.exe yoursln.sln
link|flag
vote up 2 vote down

Look into build tool NAnt (http://nant.sourceforge.net/) or MSBuild (http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx). I believe MSBuild is the build tool for VS2005+, I am however a fan of NAnt...

link|flag
vote up 2 vote down

nant and msbuild are the most popular tools to automate your build in .net, and you can can find a discussion on there the pros/cons of each in this question "best .net build tool"

link|flag
vote up 1 vote down

Simplest way: navigate to the directory containing the solution or project file, and run msbuild (assuming you have Visual Studio 2005 or newer).

More flexible ways:

  • read up on the MSBuild reference. There's tons of customization, especially once you've installed the community tasks.
  • use NAnt. It has existed for longer than MSBuild and has more community support, but requires you to start a project file from scratch, rather than extending the existing, VS-created one.
link|flag
vote up 1 vote down

As of VS2005, all of the project files (at least for .NET based projects) are actual MSBuild files, so you can call MSBuild on the command line and pass it the project file.

Bottom line is that you need to use a "build scripting language" like NAnt or MSBuild (there are others, but these are the mainstream ones right now) if you want to have any real control over your build process.

link|flag
vote up 0 vote down

I had to do this for a C++ project in Visual Studio 2003 so I don't know how relevant this is to later version of visual studio:

In the directory where your executable is created there will be a BuildLog.htm file. Open that file in your browser and then for each section such as:

Creating temporary file "c:\some\path\RSP00003C.rsp" with contents
[
/D "WIN32" /D "_WINDOWS" /D "STRICT" /D "NDEBUG" ..... (lots of other switches)
.\Project.cpp
.\Another.cpp
.\AndAnother.cpp
".\And Yet Another.cpp"
]
Creating command line "cl.exe @c:\some\path\RSP00003C.rsp /nologo"

create a .rsp file with the content between the square brackets (but not including the square brackets) and call it whatever you like. I seem to remember having problems with absolute paths so you may have to make sure all the paths are relative.

Then in your build script add the command line from the BuildLog.htm file but with your .rsp filename:

cl.exe @autobuild01.rsp /nologo

(note there will also be a link.exe section as well as cl.exe)

link|flag
vote up 0 vote down

Take a look at UppercuT. It has a lot of bang for your buck and it does what you are looking for and much more.

UppercuT uses NAnt to build and it is the insanely easy to use Build Framework.

Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!

http://code.google.com/p/uppercut/

Some good explanations here: UppercuT

link|flag

Your Answer

Get an OpenID
or

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