mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 00:48:23 -06:00
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:
parent
b8f402f64b
commit
2386abb8df
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -103,7 +103,9 @@
|
|||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
"**/bin/**": true,
|
"**/bin/**": true,
|
||||||
"**/obj/**": true,
|
"**/obj/**": true,
|
||||||
"**/packages/**": true,
|
|
||||||
"**/Generated Files/**": true
|
"**/Generated Files/**": true
|
||||||
|
},
|
||||||
|
"search.exclude": {
|
||||||
|
"**/packages/**": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user