문제

Is there a way to make CCTray popup a confirmation dialog box when I click ForceBuild for a project?

도움이 되었습니까?

해결책

The setting is called askForForceBuildReason and documentation on it is located at http://confluence.public.thoughtworks.org/display/CCNET/Project+Configuration+Block

example is:

<project name="Project name"
    description="Project description"
    askForForceBuildReason="required">

    ....

</project>

used in the ccnet.config file

다른 팁

You can get CCTray to prompt you, I believe, By setting the askForForceBuildReason property to optional or required on a project.

As I understand it, CCTray will then prompt you for a reason.

Its not a confirmation, but does act as a prompt before forcing the build

Example:

<project name="name">
  <askForForceBuildReason>required</askForForceBuildReason>

   snip

</project>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top