buildafterfailed="true" does'nt work in .net, How can I do the same thing? I'm trying to have cruisecontrol triggers force builds until the build is successful.
相关问题
- CruiseControl “Unused node detected” error when ad
- SignTool.exe Sporadically Fails with Exit Code 1
- CruiseControl.Net CCNetWorkingDirectory parameter
- Help needed configuring CruiseControl.NET statisti
- Pass arguments to svn when using CruiseControl.net
相关文章
- How to ignore output from executable with CruiseCo
- Getting MSBuild and CruiseControl .NET to build an
- Continuous Integration - with what to start: Cruis
- Targetting different Frameworks using MSBuild give
- CruiseControl.NET build fails when SVN is not avai
- What is the difference between using 'devenv
- How to get CCTray [closed]
- Anything better than CruiseControl for .Net CI? [c
You can use Project Trigger with
triggerStatus
set toFailure
and have a project monitor itself. buildafterfailed is specific to CruiseControl, from which CruiseControl.Net has diverged quite a lot.As a side note - doing this either way is probably a bad idea.