chromium / vs-chromium

A Visual Studio extension containing a collection of tools to help contributing code to the Chromium project.
BSD 3-Clause "New" or "Revised" License
310 stars 88 forks source link

vs-chromium can support visual-studio-code? #46

Open coding-pandaren opened 6 years ago

coding-pandaren commented 6 years ago

vs-chromium can support visual-studio-code?

rpaquay commented 6 years ago

Yes, with some work. VsChromium is made of 2 main components:

The extension and server communicate using a protobuf protocol over local tcp/ip channel.

To make this work in Visual Studio Code, the server can be re-used as is, but the UI needs to be re-written in JavaScript/TypeScript, using the Visual Studio Code Extension API, because VsChromium UI is currently written in C# using the Visual Studio Extensibility API, both of which are not compatible with Visual Studio Code.

alex-ks commented 4 years ago

Hello! Are there any plans to port the UI part of VsChromium to Visual Studio Code?