|
CruiseControl.NET : Custom Builder Plug-in
This page last changed on Sep 25, 2006 by gfeldman.
Steps:
For more information, please take a look at the sample code contained in the folder /docs/developer/samples. Sample Builder Classusing System; using Exortech.NetReflector; using ThoughtWorks.CruiseControl.Core; namespace ThoughtWorks.CruiseControl.Sample.Builder { [ReflectorType("mybuilder")] public class NAntBuilder : ITask { public void Run(IntegrationResult result) { Console.WriteLine("Hello World!"); } } } Sample Config File<cruisecontrol>
<project name="myproject">
<tasks>
<mybuilder>
<!-- include custom builder properties here -->
</mybuilder>
</tasks>
</project>
</cruisecontrol>
|
| Document generated by Confluence on Jun 21, 2007 10:33 |