Hi,
I've read several posts on how to create project/item wizard extension but none of them answered my question. Is it possible to refer an assembly that isn't in the GAC or in the IDE's probing path?
The closest information I got was on this thread:
Item template Wizard Extension without using GAC to get public key
It says that "If the wizard assembly lives outside the IDE's probing path, then you need to specify the fully qualified path name in the <Assembly> tag, and the assembly must be strong named."
It doesn't say what the "fully qualified path name" should look like in the <Assembly> tag, so I added something like this to my vstemplate:
<WizardExtension><Assembly>C:\SomePath\Wizard.dll</Assembly><FullClassName>Wizard.Class1</FullClassName></WizardExtension>
It gave me this error:
Error: this template attempted to load an untrusted component 'C:\SomePath\Wizard.dll'. For more information on this problem and how to enable this template, please see documentation on Customizing Projet Templates.
So the question is: is it possible to refer an assembly in a network folder from the Assmbly tag in the vstemplate? What would the syntax look like?
Thanks in advance for your help!