Reputation: 725
I'm using Visual studio 2015 Update 3 with Git as the source control. When I open the solution VS is not showing the changes done in the solution in Team Explorer window even though there were changes. When I close the solution, the Team Explorer window correctly shows the pending changes. Why is this discrepancy happening?
Upvotes: 0
Views: 1523
Reputation: 725
The issue occurs due to the .jfm
file that is automatically created by Visual studio for the SQL server database project in the solution. When this .jfm
file is committed to source control this issue begins to occur. The issue gets resolved when this .jfm
file is deleted from source control.
Upvotes: 1