Reputation: 321
This error when doing our first checkin is preventing us from adding the solution to TFS. Not sure how to resolve it.
Upvotes: 0
Views: 3828
Reputation: 661
I solved this a different way for a Class.cs file. The file existed on disk, TFS/VS could not find it for some reason.
This worked.
Upvotes: 0
Reputation: 4535
This error generally means that there is a pending change to a file that does not exist on disk.
So for whatever reason, your VS has told TFS that is is making a change to the file [ProjectName].vsdmi
. Subsequently, that file has been deleted from the disk. So when VS goes to do the checkin, it tries to check in [ProjectName].vsdmi
but it doesn't exist on the disk. So you get the error.
Either
Upvotes: 5