Is it possible to write visual studio code plugins in C #

Is it possible to write plugins for visual studio code in C #, and not in typescript? I need this because I want to call some .net dlls.

Thanks everyone!

+4
source share
1 answer

The short answer is no.

The long answer includes a combination of your own node modules, pre-building and packaging them inside your extension, and restricting your extension to Windows users only. Additional information in this release: https://github.com/Microsoft/vscode/issues/658 .

+1
source

Source: https://habr.com/ru/post/1627878/


All Articles