如何使用 Rc1 - Final 将 dxn 运行时设置为 .net 4.6.1

How To Set dxn runtime to .net 4.6.1 with Rc1 - Final

我有一个新的 asp 5 MVC 项目,带有 rc1-final。这是工作。然后我把框架从

  "frameworks": {
    "dnx451": { },

  "frameworks": {
    "dnx461": { },

结果我得到了以下异常

The current runtime target framework is not compatible with project

我也可以看到当前版本是4.5.1 目前不支持 .net4.6.1 吗?

在 Rc-Final 发布之前,我至少可以使用 .net 4.6.0 ?

有没有办法强制运行时版本为 4.6.1?

我做错了什么吗?

Before the Rc-Final release I was at least able to use .net 4.6.0 ?

您现在可以定位到 .net 4.6。

为此用途:

  "frameworks": {
    "dnx46": { }
  }

关于目标框架我们可以阅读here and here

目前好像还不能使用dnx461。我在那个版本中遇到了同样的错误。 dnx46 和之前的版本工作正常。