31 public void Execute(object Application, int hwndOwner, ref object[] ContextParams, ref object[] CustomParams, ref EnvDTE.wizardResult retval)
32 {
33 //If you want to create project, code should be included in this function.
34 ProjectItems projectItems = (ProjectItems)ContextParams[2];
35 ProjectItem projectItemXML = projectItems.AddFromTemplate((string)CustomParams[0] + "\\StringResourceTemplate.xml", (string)ContextParams[4] + ".xml");
36
37 projectItemXML.Properties.Item("CustomTool").Value = "StringResourceGenerator";
No comments:
Post a Comment