I'm trying to execute a program before the source control block executes and downloads the source to my local working directory. the prebuild task executes after and the tasks block executes after. I've poured over the docs and just can't figure it out.
+1
A:
As far as I know that is not an option. The purpose of continuous integration is to get latest code and then perform the build. If you are needing to do some type of cleanup (file deletion perhaps) you should do that at the end of the build. This way it will already be in the desired state before the next build is kicked off.
Pedro
2010-06-21 20:52:22
If it's not an option, then doing it at the end is probably the best solution. Thanks!
Matt Jacobsen
2010-09-13 08:44:53