Possible Duplicate:
NAnt or MSBuild, which one to choose and when?
What is the best build tool for .NET?
I currently use NAnt but only because I have experience with Ant. Is MSBuild preferred?
Possible Duplicate:
NAnt or MSBuild, which one to choose and when?
What is the best build tool for .NET?
I currently use NAnt but only because I have experience with Ant. Is MSBuild preferred?
There is another new build tool (a very intelligent wrapper) called NUBuild. It's lightweight, open source and extremely easy to setup and provides almost no-touch maintenance. I really like this new tool, and we have made it a standard tool for our continuous build and integration of our projects (we have about 400 projects across 75 developers). Try it out.
http://nubuild.codeplex.com/
I use a commercial software, Automated Build Studio for the build purpose.
Rake and Albacore is an excellent combination. The power of Ruby and no XML.
.NET Open Source 5 - .NET Automation with Rake and Albacore by Liam McLennan [Tekpub.com]
It also depends on what you're building. The MSBuild SDC Task library has a couple of special tasks. For example, for AD, BizTalk, etc.
Generally speaking, I get the impression that NAnt offers more flexibility compared to MSBuild, whereas (with my relatively simple needs) I've been fine with the latter so far.
We actually use a combination of NAnt and MSBuild with CruiseControl. NAnt is used for script flow control and calls MSBuild to compile projects. After the physical build is triggered, NAnt is used to publish the individual project build outputs to a shared location.
I am not sure this is the best process. I think many of us are still looking for a great build tool. One promising thing I heard recently on .NET Rocks, episode 362, is James Kovac's PSake, a build system he based entirely on PowerShell. It sounds really promising since what you can do with PowerShell is fairly limitless in theory.