Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio extension installing

I have downloaded a Visual Studio extension. How can I install it to Visual Studio? (Note I am using Visual Studio 2012 Express)

like image 421
Cyral Avatar asked Jan 17 '23 02:01

Cyral


2 Answers

It's very simple. You run the extension (*.vsix) like you would run an application and it will automatically install itself to your Visual Studio installation.

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

Keep in mind that Extensions are only supported on the Premium versions of Visual Studio and it's not possible to use them on the Visual Studio Express editions.

like image 51
eandersson Avatar answered Jan 31 '23 23:01

eandersson


Not all extensions can be installed on an Express Edition. See this stackoverflow question\answer for more details of which types are compatible.

like image 31
Peter Campbell Avatar answered Feb 01 '23 00:02

Peter Campbell