Reputation: 171
I'm using Visual Studio 2015 and windows 10. I created a new web project (MVC) with no authentication, I Tried to install EntityFramework 6.1.3 with this command in package manager "Install-Package EntityFramewor" but I got this error :
Type 'get-help EntityFramework' to see all available Entity Framework commands. Package 'EntityFramework 6.1.3' does not exist in folder 'C:\Projects\WebApplication1\packages' Install-Package : Object reference not set to an instance of an object. At line:1 char:1 + Install-Package EntityFramework -Version 6.1.3 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
I can install EntityFramework 6.1.2 without any problem.
Upvotes: 0
Views: 799
Reputation: 189
using manage Nuget package install entityframework 6.1.2 then update it to 6.1.3.
Upvotes: 1