如何手动导入便携配置文件“portable-net45+win8”?

How to manually import the portable profile “portable-net45+win8”?

我正在按照此处的说明将 .NET 解决方案从 .NET Core rc1 升级到 rc2:http://ef.readthedocs.io/en/latest/miscellaneous/rc1-rc2-upgrade.html

文章中说 'The workaround is to manually import the portable profile “portable-net45+win8”.'

有人可以告诉我如何手动导入此配置文件吗?

实际上下一段包含如何执行此操作。修改project.json文件:

{
  "frameworks": {
    "netcoreapp1.0": {
      "imports": ["dnxcore50", "portable-net45+win8"]
    }
}