Use non-deprecated version of registerTasksProvider

For #88391
This commit is contained in:
Matt Bierner
2020-02-12 17:12:00 -08:00
parent 43fd87c4cb
commit ea0880611f
5 changed files with 5 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ export function activate(
});
registerCommands(commandManager, lazyClientHost, pluginManager);
context.subscriptions.push(vscode.workspace.registerTaskProvider('typescript', new TscTaskProvider(lazyClientHost.map(x => x.serviceClient))));
context.subscriptions.push(vscode.tasks.registerTaskProvider('typescript', new TscTaskProvider(lazyClientHost.map(x => x.serviceClient))));
context.subscriptions.push(new LanguageConfigurationManager());
import('./features/tsconfig').then(module => {