Elad Katz
Elad Katz

Reputation: 7591

Where can I find the "Visual Studio Package" Template for Visual Studio project?

I'm trying to create a plugin (tool window) for Visual Studio 2010, and am following the directives inn MSDN - http://msdn.microsoft.com/en-us/library/bb165051(v=vs.110)

In step #3: 3. In the Templates pane click Visual Studio Package.

However, in my visual studio I don't see that template (i only see Visual Studio Add In) Why is it missing? Where can I find it?

Upvotes: 3

Views: 1421

Answers (2)

Be Brave Be Like Ukraine
Be Brave Be Like Ukraine

Reputation: 7735

I believe your VS 2010 SDK is not installed (or it is broken and requires re-installing).

As soon as the SDK is installed, the templates will appear in [ProgramFiles]\Microsoft Visual Studio 10.0\Common7\IDE\ProjectTemplates\ and will be ready to use.

See this page for more details.

Upvotes: 4

Alireza Maddah
Alireza Maddah

Reputation: 5885

Have you tried running Visual Studio 2010 with the following switches?

- devenv /resetskippkgs
- devenv /setup
- devenv /resetttings
- devenv /installvstemplates

Upvotes: 1

Related Questions