diff --git a/build/gulpfile.reh.js b/build/gulpfile.reh.js index 25572f2f145..2487952b74b 100644 --- a/build/gulpfile.reh.js +++ b/build/gulpfile.reh.js @@ -99,7 +99,7 @@ const serverEntryPoints = [ exclude: ['vs/css', 'vs/nls'] }, { - name: 'vs/server/node/remoteExtensionHostProcess', + name: 'vs/workbench/services/extensions/node/extensionHostProcess', exclude: ['vs/css', 'vs/nls'] }, { diff --git a/src/vs/server/node/extensionHostConnection.ts b/src/vs/server/node/extensionHostConnection.ts index d78b20dfaf1..deb7cc25ee6 100644 --- a/src/vs/server/node/extensionHostConnection.ts +++ b/src/vs/server/node/extensionHostConnection.ts @@ -48,7 +48,7 @@ export async function buildUserEnvironment(startParamsEnv: { [key: string]: stri ...userShellEnv, ...{ VSCODE_LOG_NATIVE: String(isDebug), - VSCODE_AMD_ENTRYPOINT: 'vs/server/node/remoteExtensionHostProcess', + VSCODE_AMD_ENTRYPOINT: 'vs/workbench/services/extensions/node/extensionHostProcess', VSCODE_PIPE_LOGGING: 'true', VSCODE_VERBOSE_LOGGING: 'true', VSCODE_EXTHOST_WILL_SEND_SOCKET: 'true', diff --git a/src/vs/server/node/remoteExtensionHostProcess.ts b/src/vs/server/node/remoteExtensionHostProcess.ts deleted file mode 100644 index 4c890beb60d..00000000000 --- a/src/vs/server/node/remoteExtensionHostProcess.ts +++ /dev/null @@ -1,8 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -import { startExtensionHostProcess } from 'vs/workbench/services/extensions/node/extensionHostProcessSetup'; - -startExtensionHostProcess().catch((err) => console.log(err));