unhide nuget `packages/` for VSCode (#15579)

Don't exclude nuget `packages/` in vscode. Excluding via `file.exclude`
also excludes them from c++ language extension's `includePath` and
generates missing include files and header errors.

We might still like to exclude them from full text search, so we do it
using `search.exclude`.

Closes #15578
This commit is contained in:
Tushar Singh 2023-06-21 22:16:05 +05:30 коммит произвёл GitHub
Родитель b8f402f64b
Коммит 2386abb8df
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 1 удалений

4
.vscode/settings.json поставляемый
Просмотреть файл

@ -103,7 +103,9 @@
"files.exclude": {
"**/bin/**": true,
"**/obj/**": true,
"**/packages/**": true,
"**/Generated Files/**": true
},
"search.exclude": {
"**/packages/**": true
}
}