0

我正在尝试,dnu install Microsoft.CodeAnalysis.CSharp.Scripting 1.1.1但它失败并出现 错误: FindPackagesById :Microsoft.CodeAnalysis.CSharp.Scripting 响应状态代码不表示成功:404(未找到)使用在其依赖项列表中包含相同包的 project.json 文件工作正常:
dnu restore

{
  "version": "1.0.0-*",
  "description": "ScriptSharp.ScriptEngine Class Library",
  "frameworks": {
    "dotnet5.4": {
      "dependencies": {
        "Microsoft.CSharp": "4.0.1-beta-23516",
        "System.Collections": "4.0.11-beta-23516",
        "System.Linq": "4.0.1-beta-23516",
        "System.Runtime": "4.0.21-beta-23516",
        "System.Threading": "4.0.11-beta-23516"
      }
    }
  },
  "dependencies": {
    "Microsoft.CodeAnalysis.CSharp.Scripting": "1.1.1"
  }
}

这是使用的提要列表:
https://www.nuget.org/api/v2/
https://www.myget.org/F/roslyn-nightly/
https://www.myget.org/F/ aspnetvnext/api/v2
https://www.myget.org/F/dotnet-corefx/

我究竟做错了什么?

4

1 回答 1

0

安装 CoreCLR 1.0 运行时后它工作: dnvm install -r coreclr -arch x86 latest -u

于 2016-02-02T13:45:38.780 回答