Show all files by default

Is there a way to enable the Visual Studio Solution Explorer Show All Files option by default?

+5
source share
1 answer

Not a Visual Studio parameter, but helps if you are using version control.

Insert the following lines in the .vcxproj or ".props" file.

<PropertyGroup Label = "MySettings">
    <ShowAllFiles>true</ShowAllFiles>
</PropertyGroup>
0
source

All Articles