2017-02-20 284 views
0

我目前正在使用API​​,并且需要安装此程序包以使用jwt身份验证。唯一的问题是我无法完成工作。 这里去了错误的图片: enter image description hereMicrosoft.AspNetCore.Authentication.JwtBearer依赖无法解决

这里那张我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\git C:\Program Files\dotnet\dotnet.exe restore "C:\Users\Andoni Zubizarreta\Documents\Projects\DeepMarket.vs\restore.dg" C:\Users\Andoni Zubizarreta\Documents\Projects\DeepMarket.vs\restore.dg(1,1): error MSB4025: The project file could not be loaded. Data at the root level is invalid. Line 1, position 1.

请让我知道你是否需要更多东西。提前致谢。

+0

我复制并粘贴你的'project.json'到一个新的项目,并让它建立好。你可以发布'dotnet restore'的结果,以便我可以看到错误是什么? –

+0

@ A.Bello感谢您的帮助。我知道这是一个奇怪的错误,我更新了错误的问题。 –

回答

1

我通过在包管理器控制台中手动运行dotnet恢复解决了该问题。看来我的Visual Studio有一个问题自动恢复软件包。谢谢您的帮助。