Hello. There seems to be a problem with the latest Projucer and tutorial projects with a separate library that gets linked with a plugin and standalone builds.
Steps to reproduce.
- Download the DSP tutorial zip file
- Generate Visual Studio 2019 solution file
- Open the solution file and attempt to build it
Expected result: The solution builds.
Actual result: The DSPIntroductionTutorial_SharedCode project build fails with the following message:
Error MSB3025 The source file "x64\Debug\Shared Code" is actually a directory. The “Copy” task does not support copying directories.
The project builds just fine if I go and edit the vcxproj file by hand and change this line
<ProgramDataBaseFileName>$(IntDir)\</ProgramDataBaseFileName>
into this
<ProgramDataBaseFileName>$(IntDir)sharedcode.pdb</ProgramDataBaseFileName>
JUCE v6.0.8
Projucer 6.0.8
Build date: 22 Mar 2021
Microsoft Visual Studio Community 2019
Version 16.9.4

I’ll try the very latest JUCE version.