Microsoft.AspNetCore.Authentication.JwtBearer无法解析依赖关系

时间:2017-02-20 23:44:12

标签: c# asp.net-core jwt

我目前正在研究api,需要安装此软件包才能使用jwt身份验证。唯一的问题是我无法使其发挥作用。 这里是错误的图片: enter image description here

这里是我的project.json的副本:

  "dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.1",
      "type": "platform"
    },
    "Microsoft.AspNetCore.Diagnostics": "1.0.0",
    "Microsoft.AspNetCore.Mvc": "1.0.0",
    "Microsoft.AspNetCore.Razor.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    },
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
    "Microsoft.AspNetCore.StaticFiles": "1.0.0",
    "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
    "Microsoft.Extensions.Configuration.Json": "1.0.0",
    "Microsoft.Extensions.Logging": "1.0.0",
    "Microsoft.Extensions.Logging.Console": "1.0.0",
    "Microsoft.Extensions.Logging.Debug": "1.0.0",
    "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
    "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0",
    "Core": "1.0.0-*",
    "Dtos": "1.0.0-*",
    "BundlerMinifier.Core": "2.2.281",
    "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
    "AutoMapper": "5.2.0",
    "AutoMapper.Extensions.Microsoft.DependencyInjection": "1.1.0",
    "MongoDb": "1.0.0-*",
    "Core.DAL": "1.0.0-*",
    "PusherServer": "4.0.0-rc1",
    "Core.Documents": "1.0.0-*",
    "Core.Entities": "1.0.0-*",
    "Core.Automapper": "1.0.0-*",
    "Microsoft.AspNetCore.Authentication": "1.0.0",
    "Microsoft.AspNetCore.Authentication.JwtBearer": "1.0.0"
  },

  "tools": {
    "BundlerMinifier.Core": "2.0.238",
    "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
    "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
  },

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

  "buildOptions": {
    "emitEntryPoint": true,
    "preserveCompilationContext": true
  },

  "runtimeOptions": {
    "configProperties": {
      "System.GC.Server": true
    }
  },

  "publishOptions": {
    "include": [
      "wwwroot",
      "Views",
      "Areas",
      "Areas/**/Views",
      "appsettings.json",
      "appsettings.production.json",
      "appsettings.development.json",
      "bundleconfig.json",
      "web.config"
    ]
  },

  "scripts": {
    "prepublish": [ "bower install", "dotnet bundle" ],
    "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
  },
  "runtimes": {
    "win10-x64": {},
    "win8-x86": {},
    "win7-x86": {}
  }
}

错误dotnet恢复抛出:

  

PATH =。\ node_modules.bin; C:\ Program Files(x86)\ Microsoft Visual Studio 14.0 \ Web \ External;%PATH%; C:\ Program Files(x86)\ Microsoft Visual Studio 14.0 \ Web \ External \混帐   C:\ Program Files \ dotnet \ dotnet.exe恢复“C:\ Users \ Andoni Zubizarreta \ Documents \ Projects \ DeepMarket.vs \ restore.dg”   C:\ Users \ Andoni Zubizarreta \ Documents \ Projects \ DeepMarket.vs \ restore.dg(1,1):错误MSB4025:无法加载项目文件。根级别的数据无效。第1行,第1位。

如果您需要更多信息,请与我们联系。提前谢谢。

1 个答案:

答案 0 :(得分:1)

我通过在包管理器控制台中手动运行dotnet restore来解决了这个问题。我的Visual Studio似乎在自动恢复软件包时出现问题。谢谢你的帮助。