ClearCase Integration with Visual Studio

南楼画角 提交于 2019-12-06 02:43:58

The IBM Technote swg21267165 mentions:

Errors and Warnings about ClearCase and VS.NET integration using VSIP bindings

This issue is seen if the integration between ClearCase and VS .NET is broken or if the solution file and projects were not converted properly to use VSIP bindings if the solution file and projects were developed in a previous integration of ClearCase and VS .NET.

The bindings and source control information referencing each project associated to a specific solution do not contain the same information for the correct source code control provider.

So carefully check your solution file and your project file (.csproj, .vcproj, ...) following the recommendations of this IBM technote.

  1. Verify that ClearCase and VS .NET are integrated correctly using the indicators mentioned above.
  2. If the two applications are not integrated correctly, then follow the procedure in technote 1259189 on how to integrate the full ClearCase client with VS .NET 2003/2005 or technote 1319889 for integrating the CCRC plug-in with VS .NET 2005.
  3. Once the two applications have been successfully integrated then the projects must be converted to use the new VSIP bindings. Follow technote 1254745 on how to convert projects that were created using the old MSSCCI bindings. This is necessary in order for the solution file and projects to continue to be used after an upgrade requiring the bindings to be changed to reflect a new source code control configuration.

Please open the *.CsProject file of your project then replace bellow tag

<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>

With

<SccProjectName>
</SccProjectName>
<SccLocalPath>
</SccLocalPath>
<SccAuxPath>
</SccAuxPath>
<SccProvider>
</SccProvider>

close the solution, close VS, reopen VS then your problem will be resolve.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!