PhilPursglove
PhilPursglove

Reputation: 12589

Show All Files by default

Is there a way to switch on Visual Studio's Solution Explorer 'Show All Files' setting by default?

Upvotes: 7

Views: 1523

Answers (1)

Juglans
Juglans

Reputation: 31

Not a Visual Studio setting, but helps if you use version control.

Insert following lines in ".vcxproj" or solution wide ".props" file.

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

Upvotes: 1

Related Questions