Home > front end >  Visual Studio 2022 is unable to install extensions
Visual Studio 2022 is unable to install extensions

Time:12-28

I want download AsmDude extension for Visual Studio 2022 assembly highlighting. But it show me an error

Error_Image

Logs:

log1 log2

How to solve the problem?

CodePudding user response:

The extension doesn't include compatibility for x64, which visual studio 2022 now is and it doesn't include compatibility for the new major version of visual studio 2022. Each extension ships with an extension manifest in which the author declares which requirements the extension has.

Once the extension is updated by the author it should become installable.

For now you'll need to stick to visual studio 2019.

  • Related