Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does CC.NET detect modification when a build script performs a checkin

I've been doing some research into finally automating our Development builds and still have one nagging question that I'm hoping the StackOverflow community can solve for me.

My understanding is that an IntervalTrigger when setup properly will check VSS every X seconds for changes and if it finds a modified file, will run my tasks. One of my tasks would be to checkout the AssemblyInfo files and update the version numbers. After these files are updated they would be checked back into VSS.

Thinking about this solution it doesn't make much sense because in my mind, I'm forcing the check for changed files to true every time the trigger fires. Am I missing something here? Is there a way of doing this without triggering an automatic build on the AssemblyInfo check-in?

like image 763
rie819 Avatar asked Dec 29 '22 21:12

rie819


1 Answers

You can use a Filtered Source Control Block to exclude certain files from the trigger.

like image 154
JP Alioto Avatar answered May 19 '23 16:05

JP Alioto