Break old version control links
Break old version control links
If need to break old version control links, when you move your source control solution:
1. Files and Folders to Delete
Search your entire solution for these files and delete them:
*.vsssccand*.vspscc(Visual Studio Team Foundation / TFS binding files)*.sccandvssver.scc/vssver2.scc(Visual SourceSafe files)- The hidden
.vsfolder in the root solution directory (stores local user options and caches)
2. Edit the Solution File (
.sln)- Open your
.slnfile in a plain text editor like Notepad. - Find and remove the entire block starting with
GlobalSection(TeamFoundationVersionControl) = preSolutionorGlobalSection(SourceCodeControl) = preSolutiondown toEndGlobalSection. - Save the file.
3. Edit the Project Files (
.csproj)- Open each individual project file (e.g.,
*.csproj) in Notepad. - Look for XML tags starting with
Sccinside the<PropertyGroup>tags and delete them:SccProjectNameSccLocalPathSccAuxPathSccProvider
- Save the project files
Comments
Post a Comment