14 lines
424 B
TypeScript
14 lines
424 B
TypeScript
|
|
import * as vscode from 'vscode';
|
||
|
|
import { ConfigPanel } from './panels/ConfigPanel';
|
||
|
|
|
||
|
|
export function activate(context: vscode.ExtensionContext) {
|
||
|
|
console.log('数字卫星构建平台已激活');
|
||
|
|
|
||
|
|
let disposable = vscode.commands.registerCommand('open_DSCP', () => {
|
||
|
|
ConfigPanel.createOrShow(context.extensionUri);
|
||
|
|
});
|
||
|
|
|
||
|
|
context.subscriptions.push(disposable);
|
||
|
|
}
|
||
|
|
|
||
|
|
export function deactivate() {}
|