Can I add a project wizard with VSPackage?

I have a VSPackage for Visual Studio 2008 that I created to add some editor features and custom languages. I also need to add a new project / solution wizard to create a new solution and a complex series of C ++ projects for the solution. I know that I can do this with the "Custom Wizard", but I would be much happier if I could implement this in my VSPackage using C #.

So, I guess the main question is being able to add an entry to the Project Types dialogs in Visual Studio from VSPackage? Or is it a "Custom Wizard" and JScript is my only option here?

And if possible, where can I find information and / or samples on how to do this?

+3
source share
1 answer

To add an entry to the Project Types dialog box, you need to install the project template (zip file containing the .vstemplate file) as part of your installation. You will want to do this from your installation, not from VSPackage itself.

However, your .vstemplate may call a wizard written in C #. Although this is truly a "custom wizard", you can provide a link to the .NET assembly. No need to use scripting language.

. IronPython > # Example.IronPythonProject SDK VS2008. , , , , -.

+3

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


All Articles