I have a very simple IWizard
implementation with sole the purpose of adding a parameter variable to the dictionary (no user interaction is required).
I don't want to have to add this to the GAC if possible.
I placed the dll
in the root of the template zip file with the vstemplate
file and have referenced the name in the WizardExtension
section:
<WizardExtension>
<Assembly>Wizard.dll</Assembly>
<FullClassName>Wizard.Wizard</FullClassName>
</WizardExtension>
I was hoping that this would find and use the local copy of the assembly, but it doesn't appear to work.
Is there any way of using an IWizard
implementation without installing to the GAC?