Berry Blue
Berry Blue

Reputation: 16522

Remove missing files in Visual Studio 2013

Is there a quick way to remove only files that are missing in a Visual Studio project? So files that are no longer accessible that were either deleted or moved outside of Visual Studio.

Upvotes: 2

Views: 657

Answers (1)

paulsm4
paulsm4

Reputation: 121829

It sounds like you've physically deleted a file that an MSVS project still "remembers".

You can probably just select and delete the project items in question in the MSVS IDE.

Personally, I'd just edit the project file (e.g. "myprog.csproj") in Notepad.

Upvotes: 1

Related Questions