How do I compile a Visual Studio project from the command-line?
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. … Read more