Deploy assembly containing IWizard for project template with VSIX

前端 未结 3 782
天命终不由人
天命终不由人 2021-02-05 19:03

I have created an extension for VS 2010 that deploys a project template. The project template uses a custom wizard (in a specific assembly) that is called when I create a new pr

3条回答
  •  天涯浪人
    2021-02-05 19:41

    You don't need to get your assembly containing the IWizard implementation in the GAC. You can simply declare it in your extension.vsixmanifest file as an Assembly element in the Content section.

    Unfortunately, this doesn't appear to be documented well anywhere.

    The only tricky part is making sure that the AssemblyName attribute has the correct value.

提交回复
热议问题