0
0

增加了git功能,但是还未完善

This commit is contained in:
xubing
2025-11-24 17:53:48 +08:00
parent 925024bce1
commit fa1e291bed
682 changed files with 131314 additions and 157 deletions

View File

@@ -2,7 +2,9 @@ import * as vscode from 'vscode';
import { ConfigPanel } from './panels/ConfigPanel';
export function activate(context: vscode.ExtensionContext) {
console.log('数字卫星构建平台已激活');
// 使用 vscode 的日志而不是 console.log
const outputChannel = vscode.window.createOutputChannel('数字卫星构建平台');
outputChannel.appendLine('数字卫星构建平台已激活');
let disposable = vscode.commands.registerCommand('open_DSCP', () => {
ConfigPanel.createOrShow(context.extensionUri);