Installing a custom project template with Visual Studio Installer project

installationtemplatesvisual-studio-2008

I've created a custom project template, and now I need to deploy it together with my product (i.e., it should be installed by the same msi I use for the main installation). I'm using a Visual Studio Installer project. One option is to use a custom action and manually copy a template file included in the installation. Another is to create a vsi file and use a custom action to install it after the main installation (how do I have it installed silently?) . Which one is better?

Thanks a lot

ulu

Best Answer

You can get the complete example developing VSIX implemented here: Multi-Project Templates with Wizard: Visual Studio 2010 Sample

Related Topic