Skip to content

Commit

Permalink
[plugin] remove default vscode extension URI resolver against MS VS C…
Browse files Browse the repository at this point in the history
…ode Marketplace

Since it's violates MS TOS which allows only access only for products of the VS Code family. Theia based products has to provide own resolution.

Signed-off-by: Anton Kosyakov <[email protected]>
  • Loading branch information
akosyakov committed Mar 19, 2020
1 parent c3e162c commit 011f733
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 140 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@

import { ContainerModule } from 'inversify';
import {
PluginDeployerFileHandler, PluginDeployerDirectoryHandler, PluginScanner, PluginDeployerResolver, PluginDeployerParticipant
PluginDeployerFileHandler, PluginDeployerDirectoryHandler, PluginScanner, PluginDeployerParticipant
} from '@theia/plugin-ext';
import { PluginVsCodeFileHandler } from './plugin-vscode-file-handler';
import { PluginVsCodeDirectoryHandler } from './plugin-vscode-directory-handler';
import { VsCodePluginScanner } from './scanner-vscode';
import { VsCodePluginDeployerResolver } from './plugin-vscode-resolver';
import { PluginVsCodeCliContribution } from './plugin-vscode-cli-contribution';
import { CliContribution } from '@theia/core/lib/node';
import { PluginHostEnvironmentVariable } from '@theia/plugin-ext/lib/common';
Expand All @@ -37,7 +36,6 @@ export default new ContainerModule(bind => {
bind(PluginDeployerFileHandler).to(PluginVsCodeFileHandler).inSingletonScope();
bind(PluginDeployerDirectoryHandler).to(PluginVsCodeDirectoryHandler).inSingletonScope();
bind(PluginScanner).to(VsCodePluginScanner).inSingletonScope();
bind(PluginDeployerResolver).to(VsCodePluginDeployerResolver).inSingletonScope();

bind(PluginVsCodeCliContribution).toSelf().inSingletonScope();
bind(CliContribution).toService(PluginVsCodeCliContribution);
Expand Down
137 changes: 0 additions & 137 deletions packages/plugin-ext-vscode/src/node/plugin-vscode-resolver.ts

This file was deleted.

0 comments on commit 011f733

Please sign in to comment.