尝试添加迁移时获取错误NU1605(netcore 2)

时间:2018-03-29 22:54:26

标签: c# .net-core ef-migrations asp.net-core-webapi ef-core-2.0

我有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)

有什么想法吗?

0 个答案:

没有答案