update remote release notes - multi extensionKind

This commit is contained in:
Sandeep Somavarapu 2019-12-06 15:01:41 +01:00
Родитель a8380239c3
Коммит 58aed1c570
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,18 @@
## VS Code Remote Core
### Multi extensionKind support
VS Code now supports running extensions defined with multiple extension kinds. Following table shows given the extension with extensionKind(s), where VS Code enables/installs the extension.
| Extension Kind \ Location | Local (Only) | Remote (Only) | Both |
| :--- | :----: | :----: | :--- |
| ["ui"] | ✅ | ❌ | ✅ (Local) |
| ["workspace"] | ❌ | ✅ | ✅ (Remote) |
| ["ui", "workspace"] | ✅ | ✅ | ✅ (Local) |
| ["workspace", "ui"] | ✅ | ✅ | ✅ (Remote) |
### Download extensions locally
You can now configure VS Code to download extensions always locally while installing extensions in a remote window. To enable this use setting `remote.downloadExtensionsLocally`.