I have made a C# application and I am trying to figure out if I can tap into build events of cctray (cruise control tray)? I don't want to re-invent the wheel, I just want to know when my builds fail or succeed (on a client machine) so than my custom C# application may execute a specific set of routines.
|
feedback
|
|
You could add the CruiseControl remote library as a refrence and create an instance of CruiseManagerFactory and this line will get you the status of all the projects. ServerUri is a string in the format of tcp://ServerName:Port/CruiseManager.rem
in this example I obviously named my instance of CruiseManagerFactory managerFactory. The array of ProjectStatus then has the current status of all the projects at the address of ServerUri. | ||||
|
feedback
|
|
Any reason why you can't use your build tool to do that? | |||
feedback
|