Hi, I have a question on creating new Project Type and adding it to VS.
I have created new Project Template and adding it VS using ProjectSubtype.
And actually new project templates is shown on VS and I can choose it to
create new project.
However, when loading files from template, I want to modify those files.
For example, changing name of class, etc.
I know how to do this if I create new project type by extending ProjectNode.
In this case, I can just override AddFilesFromTemplate methods.
But I don't know how to do this in ProjectSubtype. Can I do it by overriding some
functios Or do I need to implement some interface to do this If so, would someone tell me which interface to implement
Thanks,
Ryo

How to modify file when loading from template
Michael Kang
The best way for you to create a template is to select File | Export Template. This tool will generate a template with replacement variables, package it into a .zip, and copy the .zip into the right place so that it will show up in the New Project/Add New Item dialog boxes.
Craig
JVman
Craig