Reputation: 3931
I am getting the following error when trying to check in my project;
TF10123: The path '$/My Project/SourceCode/AdminView/bin/MicrosG�L��pNet.Identity.EntityFramework.dll' contains the character ''. Remove the '' and try again.
Now the error is referencing another project in the source control and not the one I am trying to check in?
Any ideas why its throwing this up?
I've tried removing this from my source control projects as a temp fix. i.e. doing the following;
Select the Team Explorer tab from the Solution Explorer
Select the Connect to Team Projects (little plug button)
Select 'Select Team Projects...' link at the top
Select only the single project I am trying to check in
But the error is still stopping a check in?
UPDATE
Please see the image of the error when trying to commit to a different project
more concerning is the fact when I try to connect to source control is get a 404 error. see the screenshot below.
Now just to note, the image I uploaded suggests there are no changes to commit (even though I have added a comment to a couple of files as a test). I also then edited a further file which now appears as a file to be included in the commit, however, the same message above is still appearing.
Upvotes: 1
Views: 553
Reputation: 114651
You have a few options:
.tfIgnore
file which excludes the files in bin directories by default (which may be something you'd want to do in any case).Upvotes: 1