我尝试将SQL美化器编写为VS Code扩展。 SQL美化引擎/解析器已经以.dll的形式提供,因为几年前我用C#(超过1万行代码)编写了它。 由于VS代码扩展是用Typescript / Javascript编写的,因此看起来您无法调用dll,或者我太笨了!您知道如何从VS代码扩展中调用我的dll吗? 谢谢。
答案 0 :(得分:1)
答案 1 :(得分:1)
您可以通过将dll,jar或exe文件放入资产文件夹来运行它们。可以使用child_process完成。
const vscode = require('vscode');
const path = require('path');
const child_process = require('child_process')
let myAppPath = vscode.Uri.file(path.join(context.extensionPath, "assets/myapp.dll"));
let execCommand = `dotnet ${myAppPath.fsPath}`;
child_process.exec(execCommand, (err, stdout, stderr) => {
if (stdout) {
vscode.window.showInformationMessage(stdout);
}
if (stderr) {
vscode.window.showWarningMessage(stderr);
}
if (err) {
vscode.window.showErrorMessage("" + err);
}
});