本文介绍了是否可以在 C# 中编写 Visual Studio Code 扩展的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以用 C# 而不是 TypeScript 编写 Visual Studio Code 扩展?我需要这个,因为我想调用一些 .NET DLL.
Is it possible to write Visual Studio Code extensions in C# and not in TypeScript? I need this because I want to call some .NET DLLs.
推荐答案
简短的回答是否定的.
长答案涉及本机节点模块的组合,在您的扩展中预先构建和打包它们,并将您的扩展限制为仅适用于 Windows 用户.本期更多信息:https://github.com/Microsoft/vscode/issues/658一>.
The long answer involves a combination of native node modules, pre building and packaging them within your extension and restricting your extension to Windows users only. More information in this issue: https://github.com/Microsoft/vscode/issues/658.
这篇关于是否可以在 C# 中编写 Visual Studio Code 扩展的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!