Custom code for New Project Templates

I'm trying to get a handle on how much the design of the New Project Templates has changed from 2003 to 2005.  One quick question at the start of this process: In VS 2003, you wrote custom code (to be run when a new project was generated) in Javascript.  Is it correct that in VS 2005, that new code has to be written in a .NET language and must implement the IWizard interface

Thanks,
Chuck


Answer this question

Custom code for New Project Templates

  • beto81

    The old methods of creating a wizard are still there in VS 2005, but we now have a new way with the template wizard. To plug into the new wizard, you need to implement the interface IWizard, and add code to the .vstemplate file to point to that IWizard implementation so that the wizard can find and load that extension.

    Craig

  • LLL1111111111111

    So, Craig, if I want to stick to the VS 2003 way of creating new templates, can I just put my Javascript file into the .zip along with the other project files

    Chuck

  • Custom code for New Project Templates