I'm working on a project that was created using a version of dotnet core using a project.json file. I was able to add database migrations and create a database using dotnet ef cli commands in VS Code (add migrations, update, etc.).
However, I've recently migrated the project using the dotnet migrate command, so now my project has a .csproj file. I need to add more database migrations, but when I run the cli commands, I get an error stating the project.json file could not be found.
I've looked at documentation online (and searched the web) and I can't find anything telling me what I might have missed. FWIW, here are the possible relevant packages in my .csproj file:
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="1.1.0" />
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.1.0-preview4-final" />