views:

58

answers:

2

I want to build project when ever a user commits any change on svn. My project solution contains many projects as they are using some shared controls and functions. Now my problem is how can i build only that project whose user has done a commit. Is it possible to build projects according to users.

Kind Regards

A: 

Have a look at SVN post-commit hooks - this will, at the very least, let you build your projects when a change is committed:

http://svnbook.red-bean.com/en/1.1/ch05s02.html#svn-ch-5-sect-2.1

Cyphus
A: 

Check Filtered Source Control Block to see how you can filter only commits by certain users to trigger a build.

skolima