Remove TFS Connection From Solution

2019-01-13 00:35发布

问题:

How to make solution as clean copy without mapping to TFS ? The problem is that this message shows when I am trying to open it. I want to open it as normal without TFS connection.

回答1:

If you want to permanently and completely detach the solution from source control, then try the following:

  1. Click the 'No' button to avoid connecting to TFS.
  2. In the file menu, go to the source control options and clear the bindings. You'll specifically want File - Source Control - Advanced - Change Source Control...
  3. Save the solution.

Next time you open the solution you won't be prompted to connect to TFS.



回答2:

To completely remove TFS source control binding follow these two steps:

  1. Go to your solution's folder, find and delete all files with *.vssscc and *.vspscc extensions.
  2. Open your solution's .sln file in Notepad, and find & remove the GlobalSection(TeamFoundationVersionControl) section.

Reference Link



回答3:

Edit the solution file and remove the following section from it. It won't be the same but will be similar.

GlobalSection(TeamFoundationVersionControl) = preSolution
    SccNumberOfProjects = 2
    SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
    SccTeamFoundationServer = <YourTFSURL>
    SccLocalPath0 = .
    SccProjectUniqueName1 = .
    SccLocalPath1 = .
EndGlobalSection


回答4:

I don't have enough reputation to comment, but just wanted to add that Tabish's solution does in fact work correctly to completely remove the solution from source control, especially when the TFS server is not reachable for one reason or another (e.g. you downloaded a project that the author did not remove from their own source control before uploading).

However, to completely remove all traces of source control from the project and avoid the warnings that are noted in the other comments to that answer (e.g. "The mappings for the solution could not be found..."), you must also remove the following lines from every project file in the solution (apparently these used to be in the solution file in earlier versions of VS, but in VS2017 they are found in the project file for each project in the solution - e.g. [project].csproj):

SccProjectName = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
SccAuxPath = "x"
SccLocalPath = "xxx"
SccProvider = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Thanks to the marked answer and other comments here for pointing this out:

visual source safe - how to remove bindings from solution w/o opening in visual studio

Combining this with Tabish's answer seems to be the most complete method of manually removing a solution from source control.



回答5:

  • To remove the binding you can use Visual Studio : Menu File / Source Control / Advanced / Change Source Control.

  • You can also do it yourself by removing any SCC... from sln and csproj.

  • If you often export source files, you can use ExportSrc. It has many options such as remove TFS binding (ON by default).



回答6:

Most of the answers provided a solution, but I would rather use a solution provided by Visual Studio 2017.

On the Menu bar of Visual Studio, go to Team and select Disconnect from Team Foundation Server. That's it.