无法在asp.net核心RC1项目上安装EntityFramework.SQLite

时间:2016-09-20 21:30:13

标签: c# entity-framework sqlite asp.net-core dnx

我想使用Windows IoT作为操作系统为我的Raspberry Pi开发API。 IoT目前仅支持ASP.NET CORE,因此我坚持使用它。

当我尝试通过Nuget添加SQLite包时,出现以下错误:

  

Package' EntityFramework.SQLite.7.0.0-rc1-final'未在源{' https://www.myget.org/f/aspnetmaster/api/v3/index.json'。

上找到

老实说,我不知道在哪里寻找这个问题。
以下是关于我的项目的随机统计数据:

global.json:

{
  "projects": [ "src", "test" ],
  "sdk": {
    "version": "1.0.0-rc1-update1"
  }
}

project.json:

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

  "dependencies": {
    "Microsoft.ApplicationInsights.AspNet": "1.0.0-rc1",
    "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final",
    "Microsoft.AspNet.Mvc": "6.0.0-rc1-final",
    "Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final",
    "Microsoft.AspNet.StaticFiles": "1.0.0-rc1-final",
    "Microsoft.Extensions.Configuration.FileProviderExtensions": "1.0.0-rc1-final",
    "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final",
    "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
    "Microsoft.Extensions.Logging.Console": "1.0.0-rc1-final",
    "Microsoft.Extensions.Logging.Debug": "1.0.0-rc1-final"
  },

  "commands": {
    "web": "Microsoft.AspNet.Server.Kestrel",
  },

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

  "exclude": [
    "wwwroot",
    "node_modules"
  ],
  "publishExclude": [
    "**.user",
    "**.vspscc"
  ]
}

DNX版本:

dnx --version
Microsoft .NET Execution environment
 Version:      1.0.0-rc1-16609
 Type:         Clr
 Architecture: x86
 OS Name:      Windows
 OS Version:   10.0
 Runtime Id:   win10-x86

0 个答案:

没有答案