Best Continuous Integration Setup for a solo developer (.NET) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:29:42Z http://stackoverflow.com/feeds/question/264307 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net 11 Best Continuous Integration Setup for a solo developer (.NET) jacko 2008-11-05T03:53:37Z 2009-05-22T08:29:57Z <p>I'm looking for a lightweight, easy to setup CI server that I can run on my laptop along with Visual Studio &amp; Resharper. I'm obviously looking at all the big names like CruiseControl, TeamCity etc etc but the biggest consideration to me is ease of setup and to a lesser extent memory footprint.</p> <p>Edit: I'd also like some suggestions for other solutions outside the big 2/3...</p> <p>Edit: I'm about to accept an answer if no one else has anything to add?</p> http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net/264319#264319 9 Answer by CMS for Best Continuous Integration Setup for a solo developer (.NET) CMS 2008-11-05T04:06:07Z 2008-11-05T04:06:07Z <p>I use <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a>, and is really, really easy to setup and get it running.</p> <p>Check the <a href="http://www.jetbrains.com/teamcity/documentation/index.html" rel="nofollow">Demos and Documentation</a>. You will have it up and running in less than one hour!</p> http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net/264349#264349 1 Answer by torial for Best Continuous Integration Setup for a solo developer (.NET) torial 2008-11-05T04:32:31Z 2008-11-05T04:32:31Z <p>For ease of use, I have found CruiseControl.Net to be very easy. Now when it comes to memory footprint, I'd have to say it does chew up my system. <strong>That is</strong> that a development box that also hosts CruiseControl.Net is not a good way to go. Unfortunately that is all I had access to when I used it in the past.</p> <p>I can't speak to the other tools.</p> http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net/264565#264565 5 Answer by Wolfbyte for Best Continuous Integration Setup for a solo developer (.NET) Wolfbyte 2008-11-05T07:39:42Z 2008-11-05T07:39:42Z <p>I have just started to use CruiseControl.NET. </p> <p>With no prior knowlege I was able to get it up and running with a single test project using MSBuild, MSTest and Team Foundation Server (i.e. CodePlex) in a couple of hours. I posted a bunch of links to useful resources here <a href="http://wolfbyte-net.blogspot.com/2008/09/devsta-2008-day-0-source-control-and-ci.html" rel="nofollow">Devsta 2008 Day 0: Source Control and CI</a> </p> <p>I can't help on memory footprint as my project was pretty small. I can tell you that while it's not doing anything (i.e. most of the time) it is using ~5MB on my system. In fact the Tray Icon notifier that comes with it takes up more memory than the service at about 6MB. That goes up when it does stuff of course.</p> http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net/264566#264566 0 Answer by FlySwat for Best Continuous Integration Setup for a solo developer (.NET) FlySwat 2008-11-05T07:41:26Z 2008-11-05T07:41:26Z <p>Out of curosity, what benefits do you see from using CI as a solo dev? </p> <p>We use CI at work to integrate between MANY dev's, but nobody has any trouble running builds on their own box :)</p> http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net/265024#265024 1 Answer by Jeff Sheldon for Best Continuous Integration Setup for a solo developer (.NET) Jeff Sheldon 2008-11-05T12:37:45Z 2008-11-05T12:37:45Z <p>I use CI as a Solo Developer.</p> <p>When I merge my dev branch into my test branch, CI grabs the code, compiles it, modifies the connection string, changes a couple of app settings, and copies it up via <a href="http://www.scootersoftware.com" rel="nofollow">Beyond Compare</a> to my test site for people testers to have a look at.</p> http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net/896877#896877 0 Answer by Jonik for Best Continuous Integration Setup for a solo developer (.NET) Jonik 2009-05-22T08:29:57Z 2009-05-22T08:29:57Z <p><a href="http://wiki.hudson-ci.org/display/HUDSON/Meet%2BHudson" rel="nofollow">Hudson</a> is extremely easy to set up, and managing jobs (projects) in it is certainly a breeze compared to e.g. CruiseControl. I'm pretty sure it works great for a solo developer too.</p> <p>For more, see <a href="http://stackoverflow.com/questions/616149/how-and-why-do-i-set-up-a-c-build-machine/616230#616230">this answer about using Hudson specifically in a .NET environment</a>.</p>