Alexey G.
Alexey G.

Reputation: 360

How to configure Cruise Control .NET to see modifications in one svn folder and checkout different folder

I have the following folder structure under snv:

trunk
     /project1
     /project2
     /shared
     /libs

I want to configure CruiseControl.Net to check project folder (https://server/.../trunk/project1) for modifications and checkout the whole trunk (https://server/.../trunk).

How can I do it in CruiseControl.Net?

Upvotes: 3

Views: 282

Answers (1)

skolima
skolima

Reputation: 32714

Use the Filtered Source Control Block to enclose your subversion source control provider. It allows you to trigger only on certain changes, while still checking out the whole sub-tree.

Upvotes: 2

Related Questions