It seems like the VS project output directory setting has a small error when created with the Visual Studio 2015 exporter from Projucer 5.01:
The Output directory definition looks like this:
$(SolutionDir)$(Platform)$(Configuration)\VST\
since the $(SolutionDir) macro already has a closing backslash the path is created with a double backslash between SolutionDir and Platform.
the macro definition shoul rather be:
(SolutionDir)(Platform)$(Configuration)\VST\
Is there a way for the user to edit exporter project templates or is that stuff hardwired?
I noticed the error when I tried to use the $(TargetPath) macro as a Command argument for the testhost in the debug settings for the VST2 and VST3 projects.