Reputation: 3338
i have downloaded project in zip file and map local folder with server , but it doesnt detect that my files are latest version , how configure tfs in vs 2012 that this files are latest without checkin all solution via internet .
Upvotes: 0
Views: 139
Reputation: 12546
You can't. A latest version check is performed by querying the server to see what the latest version of a file is in the central source repository (i.e. on the server).
If you've got a local workspace, then you would normally be using 'workspace version' checks, which are performed using the contents of the .tfs folder. You will need to have already performed a 'get latest' operation in order to populate that folder.
If you're using a server workspace, then all source control operations are performed against the server.
Remember that Team Foundation Version Control is a centralised source control system, so you should always get your code by connecting to the server. I understand if your internet connection is poor that this can be a problem at times. If it is, you might want to consider using a TFS Proxy to help.
Upvotes: 2