I want to add some additonal folders with my project folders through vs template wizard.I have a solution with four projects in it,now by using export template i successfully makes the projects templates but I also want to add some additional folders to be created when my template is clicked
My Multiproject .vstemplate file is:-
<VSTemplate Version="2.0.0"
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005"
Type="ProjectGroup">
<TemplateData>
<Name>project test</Name>
<Description>Two great templates.</Description>
<ProjectType>CSharp</ProjectType>
<ProjectSubType>
</ProjectSubType>
<CreateNewFolder>false</CreateNewFolder>
<LocationField>Enabled</LocationField>
<EnableLocationBrowseButton>true</EnableLocationBrowseButton>
<Icon>fsapp.ico</Icon>
</TemplateData>
<TemplateContent>
<ProjectCollection>
<ProjectTemplateLink
ProjectName="Project1">
projectfolder\folder12\Project1\MyTemplate.vstemplate</ProjectTemplateLink>
<ProjectTemplateLink
ProjectName="Project2">
projectfolder\folder12\Project2\MyTemplate.vstemplate</ProjectTemplateLink>
<ProjectTemplateLink
ProjectName="Project3">
projectfolder\folder12\Project3\MyTemplate.vstemplate
</ProjectTemplateLink>
<ProjectTemplateLink
ProjectName="Project4">
projectfolder\folder12\Project4\MyTemplate.vstemplatete
</ProjectTemplateLink>
</ProjectCollection>
</TemplateContent>
</VSTemplate>
I want directory structure like:
Project folder/Folder1/folder11,folder12,folder13,folder14 and in folder12, i want my .sln file and project folder.Is it Possible
Plz reply ASAP