User is trying to create a template with multiple package repositories and has ispreunzipped property set to true for the first repo.
Actual:
We found that it was trying to find unzipped sources for the second repo as well and fails installing the packages from extension.
If we removed ispreunzipped it started working fine. It might be that the unzipped property is not getting reset for the next repo.
Expected:
ispreunzipped property should be reset when installing packages for the subsequent repo's
<WizardExtension>
<Assembly>NuGet.VisualStudio.Interop, Version=1.0.0.0, Culture=neutral</Assembly>
<FullClassName>NuGet.VisualStudio.TemplateWizard</FullClassName>
</WizardExtension>
<packages repository="registry" keyName="AspNetMvc4VS11" isPreunzipped="true">
<package id="EntityFramework" version="5.0.0" skipAssemblyReferences="true" />
...
</packages>
<packages repository="extension" repositoryId="BreezeMvcSpa..c7e4af09-d368-4411-8eaa-bc493103fdf6" >
<package id="WebActivator" version="1.5.3" skipAssemblyReferences="true" />
<package id="Breeze.WebApi" version="1.0.1" skipAssemblyReferences="true" />
</packages>