I’m new so please bear with me. I would like to know how to have MSbuild and FXcop run over night and to inform the users if they fail without finishing. I have been told they both can be integrated into CruiseControl.NET. I’m currently going to look to see if CruiseControl.NET has the ability to inform the users of a failed build. (As in only half way done due to an error). If anyone has been able to do this easily it will be wonderful if you can walk me thought it or lead me to the documents.
Thanks for your time,Dennis Hayden.
Sleepking
You can use
<MsBuild>task to build your project. MsBuild is available inside task section.In task section there is an
<exec>tag which can be used to run FxCop.please check the following links
ccnet1 and ccnet2