包 Microsoft.EntityFrameworkCore.Sqlite 5.0.0-rc.1.20451.13 与 net50 (.NETFramework,Version=v5.0) / win7-x86 不兼容

Jah*_*han 14 nuget entity-framework-core .net-5 asp.net-core-5.0

我想更新我的软件包,但我遇到了一些这样的错误:

错误是:

错误 NU1202 Package Microsoft.EntityFrameworkCore.Sqlite 5.0.0-rc.1.20451.13 与 net50 (.NETFramework,Version=v5.0) / win7-x86 不兼容。包 Microsoft.EntityFrameworkCore.Sqlite 5.0.0-rc.1.20451.13 支持:netstandard2.1 (.NETStandard,Version=v2.1) API E:...\API\API.csproj 1

API.csproj 文件:

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>net5.0</TargetFramework>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.0.1" />
    <PackageReference Include="CloudinaryDotNet" Version="1.11.0" />
    <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.7" />
    <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.0-preview.8.20414.8" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.0-preview.8.20407.4">
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
      <PrivateAssets>all</PrivateAssets>
    </PackageReference>
    <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.0-preview.8.20407.4" />
    <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="5.0.0-preview8" />
    <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.7.1" />
  </ItemGroup>

</Project>
Run Code Online (Sandbox Code Playgroud)

nuget 包管理器

C:\WINDOWS\system32>dotnet --info .NET SDK(反映任何 global.json):
版本:5.0.100-rc.1.20452.10
提交:473d1b592e

运行时环境:
操作系统名称:Windows
操作系统版本:10.0.17763 操作系统平台:Windows
RID:win10-x64
基本路径:C:\Program Files\dotnet\sdk\5.0.100-rc.1.20452.10\

命令行

我怎么解决这个问题?

Ros*_*mer 22

我遇到过同样的问题:

我将 Visual Studio 程序从16.7版更新到16.8版,现在问题解决了!

我手动检查更新

这个解决方案写在这个问题的评论中,但我想让它成为帮助像我这样的人的答案


Osm*_*ran 6

您必须将 nuget 安装程序升级到最新版本。

https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite/

https://www.nuget.org/downloads

如果使用 Azure Devops,则可以将任务步骤添加到管道中。

- task: UseDotNet@2
      inputs:
        packageType: sdk
        version: 5.0.x

- task: NuGetToolInstaller@1
      inputs:
        versionSpec: ''
        checkLatest: true
Run Code Online (Sandbox Code Playgroud)