How do I solve error message “an error occurred registering this project with source control” when loading a project retrieved from a TFS server?

Please open the *.csproj file of your project then replace the following tags:

<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 and then your problem will be resolved.

Leave a Comment