用VS2017 build一个既包含net471项目又包含netstandard2.0项目的.net core解决方案时总是出现下面的错误The type 'ICollection<>' is defined in an assembly that is not referenced. You must add a reference to assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'
1 回答
慕仙森
TA贡献1827条经验 获得超7个赞
在 github 上 You must add a reference to assembly netstandard errors 中找到了解决方法,在 .csproj 中手工添加如下的配置:
<Reference Include="netstandard" />
- 1 回答
- 0 关注
- 1405 浏览
添加回答
举报
0/150
提交
取消