Why can I install extensions of c, c++, java, sql and additional of them in online visual studio?

ANUPRIYA B 1 Reputation point
2021-12-30T15:05:26.283+00:00

The red circle is showing error to install the extensions.

161387-onlo.png

Community Center Not monitored
{count} votes

2 answers

Sort by: Most helpful
  1. Bruce (SqlWork.com) 77,686 Reputation points Volunteer Moderator
    2021-12-30T16:45:49.787+00:00

    Online visual studio is running in the browser, and not hosted by node. This means an extension must support running in the browser sandbox and many node features like file I/o are missing. Actually the extension can perform file I/O via the browser api, but it must be rewritten to use it rather than the node version.

    Another restriction is the inability to load native libraries.

    Over time, if the author of the extension is interested, more extensions will be supported by vs online.

    0 comments No comments

  2. Tom Phillips 17,771 Reputation points
    2021-12-30T17:10:30.753+00:00

    VS support is via the "vs-general" tag at https://learn.microsoft.com/en-us/answers/topics/vs-general.html. I suggest you post your question with that tag.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.