If a .NET 462 project references a .NET Standard 2.0 dll the dependencies are not copied to the output bin folder.
It works correctly when the .NET Standard 2.0 project is referenced as <ProjectReference />
and <RestoreProjectStyle>PackageReference</RestoreProjectStyle>
is added to the .NET 462 project.
My .NET Standard 2.0 project lives in a different solution and therefore cannot be added as project reference.
Is there a solution to this problems, that maybe takes the deps.json in the bin folder of the .NET Standard 2.0 project into account?
Or is the only solution to add the .NET Standard 2.0 project to all solutions, where projects have references to it?