2014-02-12 52 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/

別人的例子