Created On:  18 November 2010

Problem:

I have created a Studio Enterprise Edition 6.0 solution and project using Microsoft Visual Studio 2008. How can I build the solution and/or project in batch mode?

Resolution:

Simply use Microsoft tool:  msbuild.

--> msbuild SolutionName.sln to build the solution
--> msbuild CobolProject.cblproj to build a project

( Extract of Studio Enterprise Edition 6.0 documentation:

Solutions and Projects in Visual Studio
...
A COBOL project has the extension .cblproj, and again is human readable. It is in msbuild format, which is explained in the Visual Studio Help. Different types of project have different extensions, so for example a C# project has the extension .csproj.
...
See the Visual Studio Help for more information on solutions and projects.
)