Reputation: 5089
I opened a solution in Visual Studio with some files/folders. Inside of windows explorer, I deleted 2 files inside of a folder within the solution. The files are locked in visual studio, and they can't be found because I deleted them.
How can I delete those files from Visual Studio? They are locked in solution explorer and they can't be found because they were deleted in Windows Explorer.
Upvotes: 2
Views: 3988
Reputation: 7082
You should definitely inspect your .csproj file of the project from Windows Explorer. Then manually remove any references from there. Not perfect, but should help.
Upvotes: 1