Pages

22 February 2013

Remove IBM ClearCase Bindings from a Visual Studio Solution

The ClearCase binding information is stored in the solution (.sln) and project (.##proj) files.

1) Browse to the solution_path\solution.sln file. Remove the entire GlobalSection entitled RationalClearCase, seen below, and save the file:
GlobalSection(RationalClearCase) = preSolution
SourceControlProvider = RationalClearCase
EndGlobalSection
2) For each project to unbind, browse to the project_path\project.sln file. Remove the SCC sections as shown below, and save the file:
SccProjectName="Rational ClearCase"
SccAuxPath="Rational ClearCase"
SccLocalPath="Rational ClearCase"
SccProvider="Rational ClearCase"
3) At this point the project can be reloaded into Visual Studio.

No comments:

Post a Comment