I have a problem about Portable dll (.NetStandard 1.5) reference from Nuget. I have 2 project once is A_PCL (.NetStandard 1.5) another is B_PCL (.NetStandard 1.5)
The following is project setting
When B_PCL direct reference A_PCL.dll is no problem
When I make A_PCL to Nuget package and install it in to B_PCL. I got the following error
Package A_PCL 1.0.0 is not compatible with netstandard1.5 (.NETStandard,Version=v1.5). Package A_PCL 1.0.0 supports: portable50 (portable50,Version=v0.0) One or more packages are incompatible with .NETStandard,Version=v1.5.
How can I do?