mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
* change dacpac extension to use folder icon instead of ... on buttons * make folder icon more centered * fix tests
16 lines
766 B
TypeScript
16 lines
766 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';
|
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
|
vscode.commands.registerCommand('dacFx.start', (profile: azdata.IConnectionProfile) => new DataTierApplicationWizard(undefined, context).start(profile));
|
|
}
|
|
|
|
export function deactivate(): void {
|
|
}
|