I've a VSTO - AddIn project developed using VS2015-Update3
. I'm trying to implement a Database functionality in the project and for that I'm implementing EF Core. I'm using the following official MSDN tutorial. But I'm getting the above error when I run the command dotnet ef migrations add MyFirstMigration
.
Please Note:
- VSTO-AddIn projects do not have a project.json file.
- VSTO projects use Full .NET framework (I'm using .NET 4.6.2). But, as explained here, one can use EF Core in a Full .NET framework.