0

I have an Visual Studio C++ 2013 installed (not an Express edition).

I would like to create an custom add-in, according to http://www.codeproject.com/Articles/324611/Extending-Visual-Studio-Part-2-Creating-Addins

The tutorial here is made for C#, but I guess it's also possible to create an add-in for VC++.

However, when I go to File -> New project -> Other project types the Extensibility group is missing:

enter image description here

How it looks in the tutorial:

enter image description here

PolGraphic
  • 3,233
  • 11
  • 51
  • 108
  • 1
    http://stackoverflow.com/questions/19910724/where-is-visual-studio-2013-extensibility-vsix-project-template You need to install the VS SDK. – Mathemats Apr 02 '15 at 00:19
  • Thanks man :) Can you make an answer from it? I was searching the SO for the solution earlier, but did not find this question. – PolGraphic Apr 02 '15 at 00:21

1 Answers1

0

You need to install the Visual Studio SDK. See Where is Visual Studio 2013 Extensibility VSIX Project Template. This should give you the extensibility option. It may also be hiding under VC++ -> Extensibility as opposed to Other Project Types -> Extensibility.

Community
  • 1
  • 1
Mathemats
  • 1,185
  • 4
  • 22
  • 35