Visual Studio Item Template with Wizard -


i looking sample on how create item template wizard in visual studio 2010. requirement when user selects add item, want show dialog user enters input parameters. on pressing ok in form generate xml file want add project.

thanks

i'd recommend vsix featured in link
http://blogs.msdn.com/b/visualstudio/archive/2010/03/04/creating-and-sharing-project-item-templates.aspx
, rename zip file , open start with. xml in item templates aren't complicated. looking @ 1 generated tool classic asp file.

  <vstemplate version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" type="item">   <templatedata>     <defaultname>classic asp</defaultname>      <name>classic asp</name>     <description>adds script tag import ref</description>     <projecttype>web</projecttype>     <projectsubtype>visualbasic</projectsubtype>     <sortorder>10</sortorder>     <icon>__templateicon.ico</icon>   </templatedata>   <templatecontent>     <references />     <projectitem targetfilename="$fileinputname$.asp" replaceparameters="true">classicasp.asp</projectitem>   </templatecontent> </vstemplate>  

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -