EF Core Error - No project was found. Change the current working directory or use the --project option

前端 未结 6 2016
萌比男神i
萌比男神i 2020-12-28 13:28

I am using Visual Studio 2015 and dotnet core and trying to develop an EF Core Code First project using Sqlite and this documentation / tut

6条回答
  •  臣服心动
    2020-12-28 14:21

    Instead of:

    "tools": {
        "Microsoft.EntityFrameworkCore.Tools.DotNet":"1.0.0"
      },
    

    try:

    "tools": {
          "Microsoft.EntityFrameworkCore.Tools.DotNet": {
          "version": "1.0.0-preview3-final"
      }},
    

提交回复
热议问题