Home > Software design >  Visual Studio not showing .github folder
Visual Studio not showing .github folder

Time:12-18

I just pulled from a repository with a .github (Github Actions) folder. The folder is visible in Windows Explorer, but not in Visual Studio 2022 (c# console application solution). Why is that and how to see it in Visual Studio?

enter image description here

Update: This is how it looks in Visual Studio, noet that Show All Files is enabled, yet the .github folder is not visible: enter image description here

CodePudding user response:

The solution view shows the projects in the opened solution and their content but not additional folders in the solution folder.

You can use the folder view to view all folders and files in a certain folder. However, this will lose some features until you again select a solution from that view.

CodePudding user response:

I have the same issue when using VS 2022. Even when I have Show All Files toggled, I can't see any of the files at the .sln folder level.

My work around is to just go to the folder or file itself and open in VS.

Image of VS and Folders

  • Related