diff --git a/src/vs/platform/environment/common/environmentService.ts b/src/vs/platform/environment/common/environmentService.ts index 9fc2f174a9..c04db95f26 100644 --- a/src/vs/platform/environment/common/environmentService.ts +++ b/src/vs/platform/environment/common/environmentService.ts @@ -144,7 +144,7 @@ export abstract class AbstractNativeEnvironmentService implements INativeEnviron return resolve(cliExtensionsDir); } - const vscodeExtensions = env['VSCODE_EXTENSIONS']; + const vscodeExtensions = env['ADS_EXTENSIONS'] || env['VSCODE_EXTENSIONS']; // {{SQL CARBON EDIT}} Add another option if (vscodeExtensions) { return vscodeExtensions; }