I'm trying to get my build server up and going. It's CruiseControl.Net 1.5.7256.1 and Fortress 2.0.4, running on SBS 2008 (Win2k8 IIS7, 64-bit). I added the ccnet.zip plugin available from your site to the server folder in ccnet.config, and have this source control block:
Code: Select all
<sourcecontrol type="vaultplugin" autoGetSource="true" applyLabel="false">
<username>user</username>
<password>xy1</password>
<host>my.host.com</host>
<repository>Repo</repository>
<folder>$/path/trunk/core</folder>
<ssl>true</ssl>
<useWorkingDirectory>true</useWorkingDirectory>
<workingDirectory>build</workingDirectory>
<deleteItemsThatAreNotInTheRepository>true</deleteItemsThatAreNotInTheRepository>
</sourcecontrol>
The source doesn't get pulled down to the working directory specified by ccnet.
Any ideas?
Andy