在Visual Studio Code中,我具有以下用户设置,可从“解决方案资源管理器”中排除某些文件夹:
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"build/": true,
"temp/": true,
"library/": true,
"**/*.anim": true
},
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.meta": true,
"library/": true,
"local/": true,
"temp/": true
}
}
问题是我希望在Visual Studio中应用相同的设置(即从解决方案资源管理器中排除某些文件夹)-我只是不知道该怎么做。我在VS中看不到任何可以编写此类用户设置的地方。这就是为什么我寻求帮助。