I'm building a multi project template in Visual Studio 2013 consisting of a couple of item templates, a main project and a unit test project. I created a custom template wizard w/ a simple non-UI implementation of IWizard I needed to help me w/ references in my unit test project. It all works on my PC, but I'm struggling to get the VSIX to properly deploy that custom wizard assembly on other PCs. The extension itself installs okay, but upon creating my new project it blows up telling me it can't find my custom template wizard assembly.
I can tell from fusion log viewer its looking in various subfolders (PrivateAssemblies, PublicAssemblies, CommonExtensions) of the C:\Program Files (x86)\Visual Studio 12.0\Common7\IDE folder. I need to get that DLL to get into one of those folders. I see stuff on here about ProvideBindingPath attribute, but I've not had any luck so far.
I've tried quite a few of the suggestions here on SO, but most if not all of them are referencing VS2010 (which is different in this regard).
Any help is appreciated!