vote up 0 vote down star

In ant scripts and MS build files you can set properties at the top how do I do this in the CruiseControl file ccnet.config?

flag

36% accept rate

1 Answer

vote up 4 vote down check

You can do this with cb:define. For example:

<cb:define myProjectName="Foo"/>

Then to use the defined property:

<project name="$(myProjectName)" queue="Bar"> </project>

More information about cb:define can be found here:

http://confluence.public.thoughtworks.org/display/CCNET/Configuration+Preprocessor

link|flag
That's the answer. +1 – The Chairman Oct 1 at 19:33
@Dustin: do cb:define tags need to be at the root of the document or can they occur anywhere? – minty Oct 1 at 19:35
1  
They can be anywhere. However, I believe that they need to occur before the first use of the property that you are defining. – Dustin Oct 1 at 19:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.