Reputation: 12589
Is there a way to switch on Visual Studio's Solution Explorer 'Show All Files' setting by default?
Upvotes: 7
Views: 1523
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