When to use a build tool? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T01:28:19Z http://stackoverflow.com/feeds/question/201038 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/201038/when-to-use-a-build-tool 4 When to use a build tool? Matthias 2008-10-14T12:55:24Z 2008-10-25T12:42:40Z <p>A beginner question, bear with me: I'm just wondering under what circumstances one should use a build tool like nant or msbuild? I'm working on a medium sized application (.net 3.0), every developer is doing his work and builds on his machine checking his code changes into the repository as he goes. Once we're all done, I'll get all the code from the repository, make a clean build on my machine and we deploy the binaries. Just out of curiosity, where comes the build tool in?</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201047#201047 12 Answer by Aaron Maenpaa for When to use a build tool? Aaron Maenpaa 2008-10-14T12:58:16Z 2008-10-14T12:58:16Z <p>The short answer is always.</p> <p>Each developer should be building using the build script before checking code in. The people building the release should be using the build script to build the release. Your buildbots should be using the build script to build and test the code that's been checked in.</p> <p>Doing this allows all the developers, testers and buildbots to have a consistent, repeatable build. After all, <a href="http://www.codinghorror.com/blog/archives/000988.html" rel="nofollow">The F5 Key Is Not a Build Process</a>.</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201056#201056 0 Answer by rafek for When to use a build tool? rafek 2008-10-14T12:59:55Z 2008-10-14T12:59:55Z <p>If you want to automate anything it's good to use nant/msbuild. For example: 1. check in 2. build 3. test and code coverage</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201058#201058 0 Answer by OregonGhost for When to use a build tool? OregonGhost 2008-10-14T13:00:04Z 2008-10-14T13:00:04Z <p>Are you developing with Visual Studio? In that case, you are already using msbuild, since that is the underlying build engine of Visual Studio. Actually, a Visual Studio project file is nothing more than a msbuild script.</p> <p>Apart from that, you can use the build engine on a dedicated build system, so that your binaries can be built unattended and without having Visual Studio installed. You can also use that for unit-testing.</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201060#201060 1 Answer by FOR for When to use a build tool? FOR 2008-10-14T13:01:05Z 2008-10-14T13:01:05Z <p>I think any non-trivial application needs a 'build tool'. We use the term Continuous Integration where I work. There are very exceptional cases (e.g.: I'm building a sample app to learn how feature X works), but aside from those, you'll never regret having a solid build process.</p> <p>I guess that if the development team was made up of one person... I'd <em>still</em> set up a build system including a repository, a building tool, and multiple suites of tests. Yes, maintaining the build system costs time and money, but it will pay off (I've been working for 40 months now on a project that started with 6 developers, and includes about 30 developers now; it did pay off for us a number of times) in terms of quality control, and the sooner quality issues are detected, the cheape they are to fix.</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201062#201062 2 Answer by workmad3 for When to use a build tool? workmad3 2008-10-14T13:01:18Z 2008-10-14T13:01:18Z <p>A build tool should be used when your process for building becomes longer than one command. It should be used to get your standard build process back down into one command. If your build process is longer than one command, then you have the opportunity for errors to creep in from missed/duplicated/incorrect commands being done during a build.</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201071#201071 0 Answer by John Rudy for When to use a build tool? John Rudy 2008-10-14T13:04:31Z 2008-10-14T13:04:31Z <p>Agreeing with and expanding on zacherates' answer ... Yes, you should always have some repeatable build process. While technically Visual Studio projects are MSBuild files, it's better to have the "official" build process be separate of the development environment. </p> <p>In my mind, this is true no matter how big (or small) the team is. I use NAnt and CruiseControl.NET <em>at home</em>, where all I tend to work on are scratch projects and experiments. At work, we use a similar setup, but a bit more structured in how the NAnt scripts are put together.</p> <p>It's definitely worth your time to look into it. It's not a cure-all, but it is a best practice for knowing exactly which build was released when, and what's in the wild. Being able to identify your compiled code is half the troubleshooting battle! :)</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201094#201094 1 Answer by ejgottl for When to use a build tool? ejgottl 2008-10-14T13:11:54Z 2008-10-14T13:11:54Z <p>It sounds like you are using an IDE to do your build. It essentially is a build tool; you are already using one. You should switch tools when the one you are using becomes more of a problem than a solution.</p> http://stackoverflow.com/questions/201038/when-to-use-a-build-tool/201283#201283 2 Answer by ddimitrov for When to use a build tool? ddimitrov 2008-10-14T14:04:27Z 2008-10-25T12:42:40Z <p>When you start doing releases or when your build exceeds certain number of manual steps (you'll notice when it starts getting annoying.) I've written an old <a href="http://foobarbazqux.blogspot.com/2007/11/building-tools.html" rel="nofollow">blog entry</a> on this topic which you might find interesting.</p>