Disconnect visual studio solution from sourcesafe?

I am working on a project for a company that has a basic solution in sourcesafe. Other developers work like beavers on new materials, and I would like to be able to download the source from VSS, and then disable it. Therefore, I can speed up the code without risking bothering any other code.

Can this be done? Thanks so much if yes.

-Larry

+4
source share
4 answers

From How to remove version control bindings from Visual Studio solutions on devx.com:

  • Close all instances of Visual Studio and delete all files in the solution directory ending in .scc.
  • Edit the solution to remove all binding traces of the source code controller. Delete the GlobalSection (SourceCodeControl) section in the solution file. Also delete the keys named SccProjectName, SccLocalPath, SccAuxPath, and SccProvider.
+6
source

Some time has passed since the time of the terrible sources of security, but I believe that this is what you need to do. In Visual Studio, go to File -> Source Safe -> Change Source Control (?). He will open a new window and list the projects under the current solution related to Source Safe. Select the project you want to delete, and click "Unlink" at the top. It will remove the original secure bindings from the project. If you need to bind again, just click "Bind" and select a location in the repository to bind.

+10
source

Why don't you just make a branch ?

+1
source

Unbind solution / project from VSS:

  • In Visual Studio, open Solution Explorer and select a solution or project to unlink.
  • From the File menu, select Source Control, then Change Source Control.
  • In the Change Source Code dialog box, click Cancel.
  • Click OK.
+1
source

All Articles