I'm trying to to set up a new database/migrations with Entity Framework Core (version 1.1.0) on a .NET application.
PM> Add-Migration InitialMigration
Cannot execute this command because Microsoft.EntityFrameworkCore.Design is not installed. Install the version of that package that matches the installed version of Microsoft.EntityFrameworkCore and try again.
I have already installed Microsoft.EntityFrameworkCore.Design (along with Tools (version 1.1.0-preview4-final), and the Relational/Relational.Design and Sqlite packages). I can see this in the Nuget package manager.
Now this does seem similar to this Q&A - Entity Framework Core 1.0.1 add-migration - but there's a few differences, mainly there is no project.json
anywhere, and the error message is slightly different.
There is a packages.config
file which has this in it.
<package id="Microsoft.EntityFrameworkCore" version="1.1.0" targetFramework="net46" />
<package id="Microsoft.EntityFrameworkCore.Design" version="1.1.0" targetFramework="net46" />
<package id="Microsoft.EntityFrameworkCore.Relational" version="1.1.0" targetFramework="net46" />
<package id="Microsoft.EntityFrameworkCore.Relational.Design" version="1.1.0" targetFramework="net46" />
<package id="Microsoft.EntityFrameworkCore.Sqlite" version="1.1.0" targetFramework="net46" />
<package id="Microsoft.EntityFrameworkCore.Tools" version="1.1.0-preview4-final" targetFramework="net46" developmentDependency="true" />
packages.config
and they havepackages.json
file: stackoverflow.com/questions/38306791/… – Nikolay Kostov