How do I compile a Visual Studio project from the command-line?

C++PythonVisual Studio-2008Command Line

C++ Problem Overview


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.

C++ Solutions


Solution 1 - C++

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 project.sln /build /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).

Solution 2 - C++

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

devenv YourSolution.sln /Build 

Solution 3 - C++

To be honest I have to add my 2 cents.

You can do it with msbuild.exe. There are many version of the msbuild.exe.

> C:\Windows\Microsoft.NET\Framework64\v2.0.50727\msbuild.exe > C:\Windows\Microsoft.NET\Framework64\v3.5\msbuild.exe > C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe
> C:\Windows\Microsoft.NET\Framework\v2.0.50727\msbuild.exe > C:\Windows\Microsoft.NET\Framework\v3.5\msbuild.exe > C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe

Use version you need. Basically you have to use the last one.

> C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe

So how to do it.

  1. Run the COMMAND window

  2. Input the path to msbuild.exe

> C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe

  1. Input the path to the project solution like

> "C:\Users\Clark.Kent\Documents\visual studio > 2012\Projects\WpfApplication1\WpfApplication1.sln"

  1. Add any flags you need after the solution path.

  2. Press ENTER

Note you can get help about all possible flags like

> C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe /help

Solution 4 - C++

Using msbuild as pointed out by others worked for me but I needed to do a bit more than just that. First of all, msbuild needs to have access to the compiler. This can be done by running:

"C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat"

Then msbuild was not in my $PATH so I had to run it via its explicit path:

"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe" myproj.sln

Lastly, my project was making use of some variables like $(VisualStudioDir). It seems those do not get set by msbuild so I had to set them manually via the /property option:

"C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe" /property:VisualStudioDir="C:\Users\Administrator\Documents\Visual Studio 2013" myproj.sln

That line then finally allowed me to compile my project.

Bonus: it seems that the command line tools do not require a registration after 30 days of using them like the "free" GUI-based Visual Studio Community edition does. With the Microsoft registration requirement in place, that version is hardly free. Free-as-in-facebook if anything...

Solution 5 - C++

MSBuild is your friend.

msbuild "C:\path to solution\project.sln"

Solution 6 - C++

DEVENV works well in many cases, but on a WIXPROJ to build my WIX installer, all I got is "CATASTROPHIC" error in the Out log.

This works: MSBUILD /Path/PROJECT.WIXPROJ /t:Build /p:Configuration=Release

Solution 7 - C++

Both MSBuild and DevEnv are, rightfully, suggested in the answers here as the means to build from the command line. I wanted to point out that Microsoft says this about that: "In general, DEVENV is preferred over using MSBuild directly, because you can let Visual Studio handle the complexities of MSBuild."

Reference

Solution 8 - C++

dotnet build seems to be the newest way to build your solution.

https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-build

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJohn MulderView Question on Stackoverflow
Solution 1 - C++Moses SchwartzView Answer on Stackoverflow
Solution 2 - C++Jeffrey HantinView Answer on Stackoverflow
Solution 3 - C++NoWarView Answer on Stackoverflow
Solution 4 - C++joschView Answer on Stackoverflow
Solution 5 - C++Adam DavisView Answer on Stackoverflow
Solution 6 - C++peter.cycView Answer on Stackoverflow
Solution 7 - C++D.HowellView Answer on Stackoverflow
Solution 8 - C++Rand RandomView Answer on Stackoverflow