Simple template that creates a C# project with a Build.cs that uses Code.Cake to build, test, package, etc. your solution. This is based on Cake build system: http://cakebuild.net/ that is a great way to script your CI in C# if you don't want to powershell nor #Fake things. The goal of CodeCake is to... code cake, instead of... script cake: CodeCake supports intellisense, breakpointing, etc. in the build script since the CodeCakeBuilder application is a simple Console application. CodeCake adds some features to Cake like AddPath attribute on the Build script or interactive capabilities that makes it an easy to use tool for the developer. This template crates a default CodeCakeBuilder console application (remove the '1' suffix on the proposed name that is 'CodeCakeBuilder1'). It is currently using Cake v0.15.2 and Code.Cake v0.11.0: you may first 'Update NuGet Packages' on the project to upgrade to the current versions. |