diff --git a/src/vs/workbench/api/node/extHostExtensionService.ts b/src/vs/workbench/api/node/extHostExtensionService.ts index d16146a5e0d..d39a58a432e 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;