Search code examples
visual-studio-2010version-controlvisualhg

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.


Solution

  • 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.