visual studio - NuGet error. "Package restore failedd.Rolling back changes for ...", no matter what package I try to install -


i have problem nuget, tried everything, wouldn't work.

whenever create new project, wouldn't work, can't install, update, delete, anything. leave here nuget.config file, maybe can help...

<?xml version="1.0" encoding="utf-8"?> <configuration>   <activepackagesource>    <add key="nuget.org" value="https://www.nuget.org/api/v2/" />   </activepackagesource>   <packagesources>     <add key="nuget.org" value="https://api.nuget.org/v3/index.json"     protocolversion="3" />     <add key="telerik.com" value="https://nuget.telerik.com/nuget" />   </packagesources> </configuration> 

nuget error. “package restore failedd.rolling changes …”, no matter package try install

if understand correct, can not install package microsoft.aspnetcore.nodeservices project more. right?

if yes, should notice author of package microsoft.aspnetcore.nodeservices has released new version 2.0 on august 12, 2017 (8/12/2017) (several days ago), supports: netstandard2.0

according .net platform support, .net core has version 1.0 , version 2.0 , version 1.0 corresponding .net standard 1.0 1.6, the version 2.0 corresponding .net standard 2.0. install .netstandard 2.0 package .net core 1.1, error "package microsoft.aspnetcore.nodeservices 2.0.0 not compatible netcoreapp1.1"

to resolve issue, can install package version 1.1.1 or update .net core 2.0:

enter image description here

i installed package version 1.1.1 .net core 1.1, works fine.

hope can you.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -