mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-19 11:31:40 -04:00
21 lines
751 B
TypeScript
21 lines
751 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as nls from 'vscode-nls';
|
|
nls.config(process.env.VSCODE_NLS_CONFIG)();
|
|
import * as vscode from 'vscode';
|
|
import MergeConflictServices from './services';
|
|
|
|
export function activate(context: vscode.ExtensionContext) {
|
|
// Register disposables
|
|
const services = new MergeConflictServices(context);
|
|
services.begin();
|
|
context.subscriptions.push(services);
|
|
}
|
|
|
|
export function deactivate() {
|
|
}
|
|
|