我们可以设置.vscode->settings.json中设置
"files.exclude": {
"**/*.csproj": true
}
但是,每次从unity中打开的时候还是会出现此问题.
根本的解决方案
找到系统设置
~/Library/Application Support/Code/User/settings.json
添加内容
"files.exclude": {
"**/*.csproj": true
},
"search.exclude": {
"**/*.csproj": true
},
"files.watcherExclude": {
"**/*.csproj": true
},
