diff --git a/src/vs/workbench/api/node/extHostExtensionService.ts b/src/vs/workbench/api/node/extHostExtensionService.ts index d16146a5e0da8e85c7be45839b98c13e38ca49fe..d39a58a432e2fbf6513aa1c846cb0c0ca72dbb18 100644 --- a/src/vs/workbench/api/node/extHostExtensionService.ts +++ b/src/vs/workbench/api/node/extHostExtensionService.ts @@ -106,7 +106,10 @@ class ExtensionStoragePath { await mkdirp(storagePath); await writeFile( join(storagePath, 'meta.json'), - JSON.stringify({ id: this._workspace.id }) + JSON.stringify({ + id: this._workspace.id, + name: this._workspace.name + }, undefined, 2) ); return storagePath;