Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to switch from Ankhsvn plugin to VisualHG in Visual Studio 2010

When trying to switch my solution from using Ankhsvn to VisualHG (we've just migrated from SVN to Mercurial) I kept getting the following message:

"The active solution or project is controlled by a different source control plug-in than the one you have selected. If you change the source control plugin, the active solution or project will be closed. Do you wish to continue?"

The solution would then close and when I re-opened it it would still be linked to Ankhsvn.

I tried deleting the source folder and grabbing a fresh clone out of Mercurial, but the problem kept coming back.

like image 424
Mike Parkhill Avatar asked Jul 26 '12 15:07

Mike Parkhill


1 Answers

The solution required opening the .sln file in a text editor and manually removing the following block:

-   GlobalSection(SubversionScc) = preSolution
-       Svn-Managed = True
-       Manager = AnkhSVN - Subversion Support for Visual Studio
-   EndGlobalSection

After that I was good to go.

like image 134
Mike Parkhill Avatar answered Oct 23 '22 02:10

Mike Parkhill