mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
18 lines
891 B
TypeScript
18 lines
891 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 azdata from 'azdata';
|
|
import * as vscode from 'vscode';
|
|
import { DataTierApplicationWizard } from './wizard/dataTierApplicationWizard';
|
|
import { TelemetryReporter } from './telemetry';
|
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
|
context.subscriptions.push(vscode.commands.registerCommand('dacFx.start', (profile: azdata.IConnectionProfile) => new DataTierApplicationWizard(undefined, context).start(profile)));
|
|
context.subscriptions.push(TelemetryReporter);
|
|
}
|
|
|
|
export function deactivate(): void {
|
|
}
|