'I can't see the folders I created in my project
I have been working on a project in C# in Microsoft Visual Studio 2012. Since I have a lot of C# files I decided to put them in a few folders based on their type. For example an interfaces
folder and an enumerations
folder.
Now when I open my project I can't see any of my folders and all of my C# files are not in folders. I can't open the files because it says that the directory has changed or has been deleted. I am adding a photo so you will be able to see what happened to me.
Solution 1:[1]
You should've created the folders and moved the files inside the VS Solution explorer, then everything is tracked automatically.
The easiest way to fix this is to enable "Show all files" at the top of the solution explorer, refresh the view to make sure you can see everything
Then right-click the slightly grayed out folders and choose "Include in project"
Once that's done, delete the "Broken" old files.
Solution 2:[2]
Follow the steps to add the files back to the solution
- From the Project menu toggle on "Show All Files"
- Now you should see the files/folders in Solution Explorer.
- Select those you want to include
- right click and choose "Include in Project"
- after include all files delete the broken file links
Solution 3:[3]
Sometimes you have to click "Refresh" in the solution explorer first. Then you will be able to see hidden files, when clicking "Show all files" and you will be able to "include them in project".
Solution 4:[4]
sometimes Visual Studio file tree lacks your latest update to solution explorer so, the solution is to just right click on your solution and select "Sync Namespaces"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | Damith |
Solution 3 | dinozaver |
Solution 4 | Islam AbdelHakiim |