Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing SourceSafe Integration from Visual Studio 2008

A question was asked recently about removing SourceSafe integration from Visual Studio 6. I need to do the same with Visual Studio 2008.

Our team uses Subversion and I have installed AnkhSVN, the Subversion plug-in for VS2008 (some other members of the team use VisualSVN). I find that SourceSafe "insists" on being the integrated source control tool of choice - the setting for source control plug-in in Tools > Options > Source Control seems to reset itself every time VS2008 is closed. This is very annoying and I want to get rid of SourceSafe.

I tried running the VS2008 install with the intention of switching off (effectively uninstalling) the SourceSafe plug-in, but there is no option for it.

like image 556
Magentus Avatar asked Jan 30 '09 18:01

Magentus


People also ask

How do I remove visual SourceSafe bindings?

In Visual Studio File-->Source Control-->Change Source Control. click Unbind.

Is visual SourceSafe still supported?

The final version of the product, Visual SourceSafe 2005, retired from mainstream support on 10 July 2012 with extended support ending on 11 July 2017.

What replaced visual SourceSafe?

From its inception, SourceGear Vault was designed and built for users migrating from Microsoft Visual SourceSafe. Vault combines the ease-of-use and intuitive design of SourceSafe with a reliable, robust architecture based on modern technology.


2 Answers

Visual Studio stores source control preferences in the solution and project files. To switch providers, you have to first "unbind" the old provider.

  • Select File > Source Control > Change Source Control, select the solution and all the project files, and click "Unbind."
  • Save the solution.
  • Then you can change the provider with Tools > Options > Source Control.

Hand-editing the .sln and .proj files also works, but it's not exactly recommended.

like image 91
Darcy Casselman Avatar answered Oct 06 '22 01:10

Darcy Casselman


Found it! MS's Help and Support site describes it, see section 2

Add a DWORD registry key at:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SourceSafe\HideInVisualStudio

Set it to 1. Restart VS2008 and the SourceSafe plug-in option is gone.

like image 42
Magentus Avatar answered Oct 06 '22 00:10

Magentus