Reputation: 9692
After getting the latest version and mapping the project folder to my local machine, how to detach/unbind it before opening it in Visual Studio since opening it will require a conversion that might affect the original files? The only thing I can think of is deleting the local Visual Studio Source Control Project Metadata File.
Upvotes: 1
Views: 1554
Reputation: 44275
It sounds like you just need isolation in which case you really should branch. You can simply undo the changes after you open the project. Or, if you really want to detach without VS you can use TFS power tools. That being said, its perfectly safe to use VS to do the detachment. Because the project will be upgraded as part of the process to detach you will need to undo those changes once you detach the project in VS.
The project will still need to be upgraded at some point in order to run in newer versions of VS. The good news is w/ VS 2012 those upgrades should be backwards compatible.
Upvotes: 1
Reputation: 3433
File - Source Control - Advanced - Change Source Control...
That lets you unbind a project from Source Control. The solution has to be open though.
Upvotes: 3