up vote 27 down vote favorite
9
share [g+] share [fb]

I have a solution that contains a good deal of projects,

I would like to remove the source control bindings completely, how can I do this?

Update: What I really want to do is move one solution and its projects from TFS 2005 -> 2008. Thats why I am removing the bindings, is there a better way to do this?

link|improve this question

75% accept rate
I don't think you have to remove and re-add the bindings to upgrade to a newer TFS. The 2008 client fully replaces the 2005 client and works in VS 2005 and 2008 for old and new servers. – Bert Huijben Feb 6 '09 at 12:00
feedback

3 Answers

up vote 40 down vote accepted

File -> Source Control -> Change Source Control and then unbind and/or disconnect all projects and the solution.

This should remove all bindings from the solution and project files. (After this you can switch the SCC provider in Tools -> Options -> Source Control -> Plug-in Selection).

The SCC specification prescribes that all SCC providers should implement this behavior. (I only tested it for VSS, TFS and AnkhSVN)

link|improve this answer
1  
this is a great answer, I would also like to add - disable your network adapter to avoid any prohblems during this operation – Michael L Jan 15 '09 at 11:23
+1, but unfortunately this still keeps the elements in the project files, as well as keeps the .vssscc files. However, the solution file is cleaned. Used VS 2010 Pro, with this being the first TFS project we've ever used. – James Skemp Dec 12 '11 at 19:57
feedback

I have no File -> Source Control menu in Visual Studio because I've never used TFS with this installation of Visual Studio.

My problem was I was opening a solution from the internet and the original author had forgotten to remove the TFS bindings, so every time I open the solution I'd get an annoying popup saying

"Go Offline

The Team Foundation Server http://some-other-guys-tfs-server/ is currently unavailable.

The solution will be opened offline."

To get rid of this, I deleted the .suo next to the .sln file, and then opened the .sln file in Notepad and deleted this entire section:

GlobalSection(TeamFoundationVersionControl) = preSolution
    SccNumberOfProjects = 2
    SccEnterpriseProvider = {xxxxx}
    SccTeamFoundationServer = http://some-other-guys-tfs-server/
    SccLocalPath0 = .
    SccProjectUniqueName1 = xxDemo\\xxDemo.csproj
    SccProjectName1 = xxDemo
    SccLocalPath1 = xxDemo
EndGlobalSection

Save the .sln in Notepad and then open in Visual Studio, problem solved.

link|improve this answer
feedback

The simplest solution would be to open Visual Studio, deactivate the TFS Plugin in Tools > Options > Source control and reopen the solution you want to clean. Visual Studio will ask to remove source controls bindings

link|improve this answer
Also I forgot to mention, this is a VS 2008 Solution, and I think your answer only works with VS 2005. – Michael L Dec 11 '08 at 11:00
Great! You helped me to solve a problem who was pretty hard! – Francesco Oct 18 '11 at 19:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.