我有Asp.Net Core 2.0 Web Api project
并使用EFCore 2
来处理MySql
数据库。
问题是当我运行命令时:
dotnet ef migrations add Initial --context "ApplicationDbContext"
我收到Build Failed
错误。我在命令中添加了-v
参数以查看失败详情,现在我看到了error NU1605
:
error NU1605:
MG.WebApi (>= 1.0.0) -> Microsoft.NETCore.App (>= 2.0.0)
Microsoft.EntityFrameworkCore.Tools.CommandException: Build failed.
at Microsoft.EntityFrameworkCore.Tools.Project.Build()
at Microsoft.EntityFrameworkCore.Tools.RootCommand.Execute()
at Microsoft.DotNet.Cli.CommandLine.CommandLineApplication.Execute(String[] args)
at Microsoft.EntityFrameworkCore.Tools.Program.Main(String[] args)
有什么想法吗?