Build a .NET system with Make / Rake syntax?

A Creates a system with .NET developers as its main target audience, which does not have XML-only syntax?

+6
syntax build msbuild
source share
6 answers
+9
source share

Fluentbuild

There is also UppercuT - which uses conventions to create the building, so there is no need to look at this XML syntax.

+3
source share

I am using a real Ruby Rake, just invoking the power of msbuild through your Rake script.

It is quite simple and much better than XML alternatives, in my opinion.

+1
source share

Check also rake-dotnet: http://github.com/petemounce/rake-dotnet

I'm about to give it back!

+1
source share

You definitely need to try NUBuild .

I am a developer and I use it on a regular basis, and I work with about 75 projects that I need to create with each change / release of the code. This saved me a tremendous amount of time, allowing me to find build failures locally and much earlier in the development cycle, rather than after I checked in my code.

NUBuild is extremely fast, easy to set up (you only do it once) and gives you the option of a complete build server at your fingertips, allowing you to do "local builds". You do not need to write "dense" xml scripts. When setting up, you need to create only one simple configuration file (see the User Guide). It also has many other features and functions. You can find more detailed information on the project website (on codeplex):

http://nubuild.codeplex.com/

0
source share

nRake is a way to use the rake itself

0
source share

All Articles