You must add a reference to assembly mscorlib, version=4.0.0

前端 未结 4 654
执笔经年
执笔经年 2020-12-13 17:03

I\'m having some trouble migrating a web project from RC1 to RC2. When I switched, I\'m getting a bunch of these errors throughout the project.

The ty

4条回答
  •  执笔经年
    2020-12-13 17:44

    I had the same issue and adding the following package to my project.json dependencies fixed it for me:

    "Microsoft.NETCore.Portable.Compatibility": "1.0.1-rc2-24027",
    

    This package enables compatibility with mscorlib-based PCLs.

提交回复
热议问题