vote up 7 vote down star
4

I am building Windows apps for a few clients. I read Joel on Software and took the Joel Test and realized I don't quite measure up. One place I am lacking is automated builds. What should I use to have automated builds? I have Windows apps that use .NET 1.1, 2.0, and 3.5. Also, I need to be able to build my .vdproj to create MSI's. I am looking for something that is free and would work well for a one-man team.

flag

70% accept rate

7 Answers

vote up 4 vote down check

TeamCity Professional Edition from JetBrains. http://www.jetbrains.com/teamcity/

link|flag
vote up 9 vote down

CruiseControl.Net and NAnt are the standard tools (and open source too), so there will be a lot of community support available.

It will be quite a lot of work to set it all up, but it will be very powerful and have lots of room for growth too.

link|flag
MSBuild is also a logical choice for .Net development, instead of nant. – Lars Truijens Oct 22 '08 at 17:08
vote up 1 vote down

Use built-in MSBuild engine. If you already have a solution or project file this fits very nicely.

link|flag
vote up 1 vote down

MSBuild has been useful for me

link|flag
vote up 1 vote down

See similar question already asked:

best .net build tool

link|flag
vote up 0 vote down

I've used both CruiseControl and TeamCity extensively. For a one man shop, TeamCity is far easier to setup and configure than CruiseControl.

For your build scripts, you can't go wrong with MsBuild or NAnt. I've also been considering Powershell for this but I have not attempted it yet.

link|flag
vote up 0 vote down

I have been very pleased with NUBuild since it was released. Based on your requirement I think NUBuild will be a perfect match. You can set it up (only once) under 10 minutes and ready to build your projects. Check it out -

http://nubuild.codeplex.com

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.