tags:

views:

1659

answers:

3

Is it possible to build Visual Studio solutions without having to fire up MonoDevelop?

A: 

I think you are looking for xbuild: http://www.mono-project.com/Microsoft.Build

Geoffrey Chetwood
+4  A: 

xbuild is not yet complete (it works quite well with VS2005 .csproj files, has problems with VS2008 .csproj and does not handle .sln). Mono 2.1 plans to merge the code base of mdtool (MonoDevelop command line build engine) into it, but currently mdtool is a better choice. mdtool build -f:project.sln or man mdtool if you have MonoDevelop installed.

skolima
apparently mdtool has been renamed to mdrun
Mauricio Scheffer
It's the other way round, you have an outdated MonoDevelop.
skolima
This answer is out of date. xbuild now builds .sln files perfectly well.
postfuturist
+2  A: 

xbuild now supports solutions and projects, both VS2005 and VS2008.

Ankit