Install Visual Studio Extension

I downloaded the Visual Studio extension. How to install it in visual studio? (Note: I am using Visual Studio 2012 Express)

+4
source share
2 answers

It is very simple. You run the extension (* .vsix) the same way you run the application, and it will automatically install itself in your Visual Studio installation.

You can then start Visual Studio and go to Tools => Extension Manager to confirm that Extension been successfully installed.

Keep in mind that Extensions is only supported in Premium Visual Studio versions and cannot be used in Visual Studio Express editions.

+6
source

Not all extensions can be installed in Express Edition. For more information about which types are compatible, see the stackoverflow question / answer section.

+3
source

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


All Articles