I'm building a VSTO project template with SideWaffle following the video from:
How to create Visual Studio project templates with TemplateBuilder and SideWaffle
I added an existing (new) stub VSTO project, set it not to build in both debug and release, but when I hit Ctrl+F5 to launch the Experimental VS instance I get the following three build errors:
Could not copy the file "c:\users\john\documents\visual studio 2013\Projects\VisioVstoTemplate\VisioVstoTemplate\.NETFramework,Version=v4.5" because it was not found. VisioVstoVSIX
Could not copy the file "c:\users\john\documents\visual studio 2013\Projects\VisioVstoTemplate\VisioVstoTemplate\Microsoft.VSTORuntime.4.0" because it was not found. VisioVstoVSIX
Could not copy the file "c:\users\john\documents\visual studio 2013\Projects\VisioVstoTemplate\VisioVstoTemplate\Microsoft.Windows.Installer.4.5" because it was not found. VisioVstoVSIX
So questions are:
- why are these prerequisites being looked for in the first place and
- how can I prevent the error?
(Using Visual Studio 2013 Ultimate (Update 4), SideWaffle 1.15 and TemplateBuilder 1.1.2-beta5)