How can I hide files from Solution Explorer by name in VS2015?

后端 未结 3 1299
北恋
北恋 2020-12-29 07:14

I am writing a website in VS2015 using the ASP.NET Preview template. Unfortunately, Dropbox has added a bunch of .dropbox.attr files in each folder of my projec

3条回答
  •  失恋的感觉
    2020-12-29 08:01

    You can modify the .xproj file of your project and add the following to exclude folders:

    
        
        
    
        
    
    

    You can use DnxInvisibleFolder for folders and DnxInvisibleContent for files. Some folders (like node_modules) have sometimes thousands of folders/files which seem to pose a major problem for VS2015 to scan and load.

提交回复
热议问题