mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-04-01 01:20:31 -04:00
SQL Operations Studio Public Preview 1 (0.23) release source code
This commit is contained in:
20
extensions/merge-conflict/src/extension.ts
Normal file
20
extensions/merge-conflict/src/extension.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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() {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user