Most of product assemblies use an AssemblyVersion generated at build time. I'd like my template wizard assembly to do the same, but I'm not sure how one might incorporate a "variable" version number in the <WizardExtension> element in the .vstemplate:
<WizardExtension><Assembly>Company.Product.Wizards, Version=3.1.0.0, Culture=neutral, PublicKeyToken=a26d639188cc98e2</Assembly><FullClassName>Company.Product.Wizards.NewProjectWizard</FullClassName></WizardExtension>
At present, my only solution is to manually assign the AssemblyVersion for our wizard assemblies and live with those versions being different than other assemblies shipped with our product. Any thoughts are much appreciated.