NancyFx 与 .Net Core 不兼容

NancyFx incompatibility with .Net Core

我尝试在 Ubuntu 和 Windows 下获取 NancyFx 运行 .Net Core,但我收到的消息是 NancyFx 与 .NetCoreApp 不兼容。 我是整个 .Net Core 的新手,欢迎任何帮助。

我的project.json

{
  "version": "1.0.0-*",
  "buildOptions": {
    "emitEntryPoint": true
  },

    "dependencies": {
        "Microsoft.NETCore.App": "1.0.1",
        "Nancy": "2.0.0-barneyrubble"
    },

  "frameworks": {
    "netcoreapp1.0": {
      "imports": "dnxcore50"
    }
  }
}

关于 dotnet restore 的错误消息

Errors in D:\User\Documents\Visual Studio 2015\Projects\WebService\src\WebService\project.json
    Package Nancy 2.0.0-barneyrubble is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0). Package Nancy 2.0.
0-barneyrubble supports:
      - net452 (.NETFramework,Version=v4.5.2)
      - netstandard1.6 (.NETStandard,Version=v1.6)
    One or more packages are incompatible with .NETCoreApp,Version=v1.0.
dotnet --version
1.0.0-preview2-003131

有一些教程展示了人们在 .Net Core 上使用 Nancy,我是不是做错了什么?

我找到了答案。问题是 Microsoft.NETCore.App 依赖项中缺少类型。

{
  "version": "1.0.0-*",
  "buildOptions": {
    "emitEntryPoint": true
  },

    "dependencies": {
        "Microsoft.NETCore.App": {
            "version": "1.0.1",
            "type": "platform"
        },
        "Nancy": "2.0.0-barneyrubble"
    },

  "frameworks": {
    "netcoreapp1.0": {
      "imports": "dnxcore50"
    }
  }
}

完美地建立在 Windows 和 Linux 的基础上。