I'm looking for a build automation solution for use with a Visual Studio solution space containing multiple projects of mixed source types (mainly Win32 C++ and C#). Also, all the code is stored in a Subversion repository. So it needs to go all the way from pulling down a working copy of the code, to compiling the source, to building the setup files.
Requirements are as follows:
Absolute Must Haves:
Things I would like
Things I don't need
NAnt and CruiseControl.Net do all of this except it has no GUI for creating the build scripts themselves. The GUI it does have is a web front end that allows you to monitor / force builds, as well as a system tray application which does the same. If GUI creation of the scripts is a really big requirement then final builder is one of your best options, however it will cost you money. I don't think you are going to get the GUI in this space for free.
Have you considered using MSBuild? It comes free with the .NET framework.
It would require a small amount of coding. For example, you'd have to create a new .net class (deriving from Task) that overrides the Execute function, then call out to SVN to update your source code. But the bulk of the set up would be in a build.xml file where you can specify solution file names, and the different configurations.
A reasonable introduction is here: MSBuild
I understand why you'd want to do this through a GUI, but IMHO the flexibility you get using MSBuild is worth the extra effort of setting it up, while not being as complex as writing it completely from scratch in another scripting language.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With