views:

28

answers:

1

I am trying to set a conditional statement to use an attribute depending on its value. I am not sure ccnet-config supports conditions

For example:

<cb:define project-name="$(name)" />
<cb:if test:"$(project-name == '')">
    <cb:define project-name="$(name)" />
</cb:if>
+1  A: 

The CruiseControl.NET pre-processor, as of version 1.5, doesn't support conditional statements, so this is not possible.

splattered bits