views:

36

answers:

1

Hi all,

I need to run a taks in CruiseControl .NET before checking for modification in source control. I mean this task should be the very firts thing that CruisControl will always do. I see section in cc.config, but it is for running tasks before building a solution, so it is not exactly what I need.

Will be very appriciate for any help. Thank you.

+2  A: 

Use batch file as proxy for the version control utility, eg. svn.bat:

echo do stuff
"c:\program files\Subversion\svn.exe" %*

Use executable atrribute to point to the bach file.

WooYek