Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

There appears to be a discrepancy between the solution's source control information about some project(s) and the information in the project file(s)

Tags:

I get this error message in a Reporting Services solution in Visual Studio 2010 [we're using TFS for source control]:

There appears to be a discrepancy between the solution's source control information about some project(s) and the information in the project file(s).

To resolve this discrepancy it will be necessary to check out the project file(s) and update them. If the check out fails, however, and the solution is closed without saving, you will see this warning again the next time you open the solution.

Only some projects get checked out but others seem OK. So here is what I tried:

  1. I tried to compare what might be different between the project files that work and don't work but nothing catches my eye.
  2. I looked around and tried a number of proposed solutions like "adding a file, checking in and then removing it and checking in". No luck.
  3. I tried to look for "Scc" tags in project files but I don't see any in there. I also don't see them in projects that work fine. Looking at my solution the Scc entries look reasonable.

Help!! What am I missing?

like image 677
Denis Avatar asked May 17 '13 19:05

Denis


2 Answers

Using Visual Studio you can solve this problem by unbinding and binding the solution and/or projects. Try this:

  1. Open the problem solution in VS (did this in VS2013 just now)
  2. Undo all pending changes to all the projects in that solution and the solution itself
  3. Go to File -> Source Control -> Advanced -> Change Source Control
  4. Select the problem projects and click "Unbind"
  5. Click OK and close the window (THIS IS IMPORTANT - if you don't click OK VS doesn't update the solution properly)
  6. Go to File -> Source Control -> Advanced -> Change Source Control
  7. Select all the projects you unbound in #4 and click "Bind"
  8. Click OK and close the window
  9. Check In Your Changes
  10. Close the solution and open it back up and everything should be fine now
like image 75
Denis Avatar answered Sep 22 '22 06:09

Denis


Experienced the same problem in VS2015.

I found this workaround worked for me:

Change < Scc* > tag values to "SAK" (Should already know) in the project files:

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

https://connect.microsoft.com/VisualStudio/feedback/details/616751/discrepancy-between-the-solutions-source-control-information-about-some-project-s-and-the-information-in-the-project-file-s

Workaround #3

like image 43
R Kruisselbrink Avatar answered Sep 20 '22 06:09

R Kruisselbrink