Microsoft.VisualStudio.CommonIDE.TemplateWizard - IWizard Interface

< xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /> I implemented the IWizard Interface and it was working fine with Beta 2 but I have installed the June CTP Release and it is not calling my wizard untrusted and not allowing it to run.  How can I fix this   I refers to a section in the help file that does not seem to exist.

Chris




Answer this question

Microsoft.VisualStudio.CommonIDE.TemplateWizard - IWizard Interface

  • ingosen

    Hi Chris, sorry for the delay in responding to this.

    The IWizard interface was moved to Microsoft.VisualStudio.TemplateWizard after beta 2.

    In order for your Wizard to be properly recognised, you will need to call it as shown below:

    <Assembly><Name of assembly without the .dll>, Version=1.0.0.0, Culture=Neutral, PublicKeyToken=<Token Number></Assembly>

    Additionally, you can place the dll anywhere that the Assembly.Load method will find it. This means the GAC, the directory containing devenv.exe or a directory in the probing path.

    Hope this helps.
    -Prasadi


  • Microsoft.VisualStudio.CommonIDE.TemplateWizard - IWizard Interface