What is the best build tool for .net. I currently use nant but only because I have experience with ant. Do people prefer msbuild ?
|
9
|
|
|
|
|
|
We actually use a combination of NAnt and MSBuild with Cruise Control. 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. 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 on .Net Rocks recently is James Kovac's PSake, a build system he based entirely on PowerShell. Sounds really promising since what you can do with PowerShell is fairly limitless in theory. |
||||
|
|
|
There is another new build tool (a very intelligent wrapper) called NUBuild. Its 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 standard tool for our continuous build and integration of our projects (we have about 400 projects across 75 developers). Try it out.
|
||
|
|
|
|
UppercuT uses NAnt to build and it is the insanely easy to use Build Framework. Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects! http://code.google.com/p/uppercut/ Some good explanations here: UppercuT |
|||
|
|
|
|
I use a commercial software, Automated Build Studio for the build purpose. |
||
|
|
|
|
Using a dynamic scripting language like Python, BOO, Ruby, etc. to create and maintain build scripts might be a good alternative to an XML based one like NAnt. (They tend to be cleaner to read than XML.) |
||
|
|
|
|
I use MSBuild completely for building. Here's my generic MSBuild script that searches the tree for .csproj files and builds them:
(Sorry if it's a little dense. Markdown seems to be stripping out the blank lines.) It's pretty simple though once you understand the concepts and all the dependencies are handled automatically. I should note that we use Visual Studio project files, which have a lot of logic built into them, but this system allows people to build almost identically both within the Visual Studio IDE or at the command line and still gives you the flexibility of adding things to the canonical build like the xUnit testing you see in the script above. The one PropertyGroup is where all the configuration happens and things can be customized, like excluding certain projects from the build or adding new test assembly masks. The ItemGroup is where the logic happens that finds all the .csproj files in the tree. Then there are the targets, which most people familiar with make, nAnt or MSBuild should be able to follow. If you call the Build target, it calls _Compile, _Deploy and __Test. The Clean target calls MSBuild on all the project files for them to clean up their directories and then the global deployment directory is deleted. Rebuild calls Clean and then Build. |
||
|
|
|
|
I'd just like to throw FinalBuilder in to the mix. It's not free, but if your fed up with editing xml files and want a somewhat nicer (imo) environment to work in I would give it a go. I've worked with all of them and have always went back to FB. |
||||
|
|
|
It also depends on what you're building. MSBuild SDC Task library has a couple of special tasks for example AD, BizTalk etc.
|
||
|
|
|
|
I have used both MSBuild and NAnt, and I much prefer MSBuild, mainly because it requires a lot less configuration by default. Although you can over-complicate things and load MSBuild down with a lot of configuration junk too, at its simplest, you can just point it at a solution/project file and have it go which, most of the time, for most cases, is enough. |
||
|
|
|
|
A little harsh Soeren, but I take your point. I guess I was simply looking for a poll on what .net build tool people are are using and why. |
||
|
|
|
|
I've used both and prefer nAnt. It's really hard for me to say one is "better" than the other. |
||
|
|
|
|
We use MSBuild, because we started with VS2005 (now 2008), and MSBuild was already "built in" to the SDK - less maintenance on the build server. It's a nAnt clone, really - both tools are infinitely flexible in that they let you create custom build tasks in code, and both have a decent set of community build tasks already created. |
|||
|
|
|
|
I think you need to elaborate on your needs if you want useful answers. Generally speaking, though, 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. Edit: Sorry, I wasn't trying to be harsh. I see others have already answered in a more useful manner. |
|||
|
|
