I am using Visual Studio 2015 Update 3, where I am using NET Core, I have three class libraries. Here are my class libraries:

- Links ClassLibrary1 -> Microsoft.Extensions.Caching.Redis
- ClassLibrary1 uses .NETCoreApp 1.0, while Redis caching uses .NET Standard 1.5
My problem is that when I create my solution, it seems that ClassLibrary1 could not find the DLL for Redis, since the dll libraries are placed in the artifact folder in the solutions directory.
If I check Build Build, it says that:
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Common.Targets(262,5) error : C:\Caching-1.0.0\src\ClassLibrary1\error CS0006: Metadata file 'C:\Caching1.0.0\src\Microsoft.Extensions.Caching.Redis\bin\Debug\netstandard1.5\Microsoft.Extensions.Caching.Redis.dll' could not be found
Line 262: from Microsoft.DotNet.Common.Targets

It seems that the dlls are built and placed in a directory of artifact folders in the project solution. Struture project file system:

Cahing projects don't have any bin folder, how can I change it to make bins generated in their respective projects?
source share