How do I add an exported item template to a web group in Visual C # in the Add New Item dialog box in Visual Studio 2013?

I exported C#

Item Template

for use in Visual Studio 2013

. In the dialog box, Add New Item

it appears in the Visual C#

default category . It's okay, but I really want this in a Visual C # subcategory Web

. I have modified the file in the MyTemplate.vstemplate

best way I can understand (using ProjectType and ProjectSubType ) and have the following results:

 <VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Item">
    <TemplateData>
        <DefaultName>DefaultName.aspx</DefaultName>
        <Name>Name</Name>
        <Description>Item template description</Description>
        <ProjectType>Web</ProjectType>
        <ProjectSubType>CSharp</ProjectSubType>
        <SortOrder>10</SortOrder>
        <Icon>__TemplateIcon.ico</Icon>
    </TemplateData>
...
</VSTemplate>

      

What am I missing? Thanks in advance.

+3


source to share





All Articles