.NET Standard library output doesn't include nuget dependencies
编译.net standard项目的时候,bin/Debug目录下,没有依赖的项目。设置CopyLocalLockFileAssemblies
Here is another suggestion, taken from CEZARY PIĄTEK's blog
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
</Project>