0

It is really painfull to get all code form TFS whenever you make a build using NANT. Is there any settings in ccnet.config which will only take the files which are changed form last time which can speed up the process.

alice7
  • 3,834
  • 14
  • 64
  • 93

1 Answers1

0

The "get" process will only actually download files that are different than the version in the workspace, unless you are specifying a /force which will force it to get the specified version even if TFS thinks it has that version in the workspace.

Robaticus
  • 22,857
  • 5
  • 54
  • 63
  • But still after taking out this, it is still checking out all the files. – alice7 Jul 22 '10 at 14:47
  • Are you sure it is actually getting them? It will show all files being processed, but it should only be actively getting the ones that aren't up to date. – Robaticus Jul 22 '10 at 16:31
  • Im seeing all the files dated at the time of build.So you mean that the date won't change if build won't take latest or even then it says dated it didn't get it from TFS? – alice7 Jul 22 '10 at 18:37
  • The dates should only change on those files that have been "gotten" from TFS. If you have build date/time on all files then you are right, it is still getting everything. The only reasons TFS will do this is if you have /force turned on, or TFS's record of the file that is in the current workspace shows that it isn't the latest. – Robaticus Jul 22 '10 at 18:56