4

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

Cyral
  • 13,999
  • 6
  • 50
  • 90

2 Answers2

6

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.

eandersson
  • 25,781
  • 8
  • 89
  • 110
  • Ah Im using an express edition, double clicking it was the first thing i tried. Oh well.. – Cyral Mar 27 '12 at 19:51
  • Yes. I figured as much but I thought I would cover the basics just in case, but yea not possible unless you upgrade. – eandersson Mar 27 '12 at 19:53
3

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

Community
  • 1
  • 1
Peter Campbell
  • 661
  • 1
  • 7
  • 35