using 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!");
}
}
}
You think I could get an example of said custom build properties. Do these properties involve passing arguments to the plugin or setting fields in the plugin class?
-ChazZ