views:

35

answers:

1

I'm working with the latest CruiseControl.Net 1.5.7256.1.
I'm trying to use one of the system parameters, CCNetWorkingDirectory under sourcecontrol block and the project failed to recognize this parameter.

<sourcecontrol type="svn">
    <trunkUrl>https://padev/svn/physical/Source&lt;/trunkUrl&gt;
    <workingDirectory>$[CCNetWorkingDirectory]\SVN\Source</workingDirectory>
    <username>ccnet</username>
    <password>hidden</password>
</sourcecontrol>

I also tried it as $CCNetWorkingDirectory, $(CCNetWorkingDirectory), Non of these option worked.

Thank you

A: 

You got trapped. I think almost anybody who starts with CCNET tries to access CCNetWorkingDirectory inside CCNET configuration. This is not possible. Find my answer on a similar question here.

The Chairman
Brilliant. Someone should update their documentation. Thanks.
Gal Bracha