2014-02-12 51 views

回答

0

我不认为你可以“开箱即用”。

你将不得不编写自己的发布者...并背诵“FailureUsers”。

https://github.com/ccnet/CruiseControl.NET/blob/master/project/core/IIntegrationResult.cs

// Users who contributed modifications to a series of failing builds: 
    /// <summary> 
    /// Gets the failure users. 
    /// </summary> 
    /// <value></value> 
    /// <remarks></remarks> 
    ArrayList FailureUsers { get; } // This should really be a Set but sets are not available in .NET 1.1 

这里是技术规格:

http://confluence.public.thoughtworks.org/display/CCNET/Custom+Builder+Plug-in

这是谁写的....

http://krisselden.com/2007/01/29/adding-a-custom-cruisecontrolnet-publisher/

别人的例子