博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vs2008使用过AnkhSVN后不能绑定到vss的问题解决
阅读量:4679 次
发布时间:2019-06-09

本文共 816 字,大约阅读时间需要 2 分钟。

由于项目曾经使用过svn作为源代码管理器,并且已经取消绑定了,现在想重新使用vss作为源代码服务器,但在选项里选择源代码管理插件时老是提示要关闭解决方案后再重新打开,但重新打开后再选择时依然如故,后来查了下sln文件,做了如下改动,就可以了:

找到

Global
GlobalSection(SubversionScc) = preSolution
Svn-Managed = True
Manager = AnkhSVN - Subversion Support for Visual Studio
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|.NET = Debug|.NET
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|.NET = Release|.NET
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86

EndGlobalSection 

。。。。。。

将 Svn-Managed = True改为Svn-Managed = False

将Manager = AnkhSVN - Subversion Support for Visual Studio改为

Manager =

这样就可以直接绑定了 

 

转载于:https://www.cnblogs.com/yuanxiaoping_21cn_com/archive/2012/09/12/2681343.html

你可能感兴趣的文章