2017-09-04 260 views
5

我试图添加我的第一个EF Core 2迁移。我有EF6迁移运行的解决方案,但现在我已经迁移到EF Core 2和.Net Core 2.0。当我运行此命令:试图让ef核心迁移工作迁移到.net core 2

dotnet ef migrations add InitialMigration 

我得到这个异常:

System.IO.FileNotFoundException: Could not load file or assembly 'netstandard, Version=2.0.0.0, Culture=neutral, 
PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. 
File name: 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' 
    at System.Reflection.RuntimeAssembly.GetType(RuntimeAssembly assembly, String name, Boolean throwOnError, Boolean ignoreCase, ObjectHandleOnStack type, ObjectHandleOnStack keepAlive) 
    at System.Reflection.RuntimeAssembly.GetType(String name, Boolean throwOnError, Boolean ignoreCase) 
    at Microsoft.EntityFrameworkCore.Tools.ReflectionOperationExecutor..ctor(String assembly, String startupAssembly, String projectDir, String contentRootPath, String dataDirectory, String rootNamespace, String environment) 
    at Microsoft.EntityFrameworkCore.Tools.Commands.ProjectCommandBase.CreateExecutor() 
    at Microsoft.EntityFrameworkCore.Tools.Commands.MigrationsListCommand.Execute() 
    at Microsoft.DotNet.Cli.CommandLine.CommandLineApplication.Execute(String[] args) 
    at Microsoft.EntityFrameworkCore.Tools.Program.Main(String[] args) 
Could not load file or assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'. The system cannot find the file specified. 

我在Windows 10上运行从包管理器控制台命令在Visual Studio 2017年v15.3我得到的尝试从Windows命令行运行时出现相同的消息。启动项目以及默认项目被设置为包含数据库上下文类的类库。这是该项目的.csproj项目文件:

<Project Sdk="Microsoft.NET.Sdk"> 
    <PropertyGroup> 
    <TargetFramework>netcoreapp2.0</TargetFramework> 
    </PropertyGroup> 
    <ItemGroup> 
    <PackageReference Include="Analytics" Version="3.0.0" /> 
    <PackageReference Include="AWSSDK.Core" Version="3.3.17.6" /> 
    <PackageReference Include="AWSSDK.S3" Version="3.3.10.2" /> 
    <PackageReference Include="CoreCompat.System.Drawing.v2" Version="5.2.0-preview1-r131" /> 
    <PackageReference Include="HtmlAgilityPack" Version="1.5.1" /> 
    <PackageReference Include="ImageProcessor" Version="2.5.4" /> 
    <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.0.0" /> 
    <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.Design" Version="2.0.0-preview1-final" /> 
    <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.0.0" /> 
    <PackageReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" /> 
    <PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> 
    <PackageReference Include="NLog.Extensions.Logging" Version="1.0.0-rtm-beta5" /> 
    <PackageReference Include="QRCoder" Version="1.2.9" /> 
    <PackageReference Include="System.Configuration.ConfigurationManager" Version="4.4.0" /> 
    <PackageReference Include="WindowsAzure.Storage" Version="8.4.0" /> 
    </ItemGroup> 
    <ItemGroup> 
    <DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0" /> 
    </ItemGroup> 
</Project> 

任何想法,我在做什么错了,或者我该如何解决问题?

回答

4
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" 
         Version="1.0.0" /> 

您需要更新到2.0.0版本。