mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
* sql db wizard with target selection * add database table selection * add sqldb to service and IR page * Code complete * navigation bug fixes * fix target db selection * improve sqldb error and status reporting * fix error count bug * remove table status inference * address review feedback * update resource strings and content * fix migraton status string, use localized value * fix ux navigation issues * fix back/fwd w/o changes from changing data
18 lines
700 B
TypeScript
18 lines
700 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 vscode from 'vscode';
|
|
import { DashboardWidget } from './dashboard/sqlServerDashboard';
|
|
|
|
let widget: DashboardWidget;
|
|
export async function activate(context: vscode.ExtensionContext): Promise<DashboardWidget> {
|
|
widget = new DashboardWidget(context);
|
|
await widget.register();
|
|
return widget;
|
|
}
|
|
|
|
export function deactivate(): void {
|
|
}
|