Iām doing some research to completely automate our development and there is still one grumbling question that I hope the StackOverflow community can solve for me.
I understand that IntervalTrigger, if configured correctly, checks VSS every X seconds for changes, and if it finds a modified file, my tasks will start. One of my tasks is to check AssemblyInfo files and update version numbers. After updating these files, they will be returned to VSS.
Thinking about this solution, this does not make much sense, because, in my opinion, I force the check for modified files to true every time the trigger fires. Am I missing something? Is there a way to do this without starting automatic assembly when registering AssemblyInfo?
source share