将.net core 2.2迁移到3.1问题

时间:2020-02-12 16:16:52

标签: c# migration .net-core-2.2 .net-core-3.1

在安装.NET core SDK 3.1并将我所有项目的SDK(在我的解决方案中)从.NET core SDK 2.2升级到3.1,并将所有包(例如扩展名)更新到3.1版本之后,我成功地在解决方案中构建了所有项目

但是后来我得到了这个错误:

C:\ Program 文件\ dotnet \ sdk \ 3.1.101 \ Sdks \ Microsoft.NET.Sdk \ targets \ Microsoft.NET.Sdk.FrameworkReferenceResolution.targets(59,5): 错误NETSDK1083:指定的RuntimeIdentifier'win7-64'不是 认可。 C:\ Program 文件\ dotnet \ sdk \ 3.1.101 \ Sdks \ Microsoft.NET.Sdk \ targets \ Microsoft.NET.Sdk.FrameworkReferenceResolution.targets(59,5): 错误NETSDK1083:指定的RuntimeIdentifier'win7-86'不是 认可。

这是我的WebApi.csproj:

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

  <PropertyGroup Label="Globals">
    <SccProjectName>SAK</SccProjectName>
    <SccProvider>SAK</SccProvider>
    <SccAuxPath>SAK</SccAuxPath>
    <SccLocalPath>SAK</SccLocalPath>
  </PropertyGroup>

  <PropertyGroup>
    <TargetFramework>netcoreapp3.1</TargetFramework>
  </PropertyGroup>

  <PropertyGroup>
    <RuntimeIdentifiers>win7-64;win7-86;ubuntu.16.04-x64;win10-x64;osx.10.11-x64</RuntimeIdentifiers>
  </PropertyGroup>

  <PropertyGroup>
    <GenerateDocumentationFile>true</GenerateDocumentationFile>
    <LangVersion>7.1</LangVersion>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <NoWarn>1591</NoWarn>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
    <NoWarn>1701;1702;1591</NoWarn>
  </PropertyGroup>

  <ItemGroup>
    <None Remove="swagger.css" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="xxxxxx" Version="x.x.x" />
  </ItemGroup>


  <ItemGroup>
    <ProjectReference Include="..\xxxx.csproj" />
  </ItemGroup>

</Project>

1 个答案:

答案 0 :(得分:0)

如@Neil所说

删除整个“ runtimeIdentifiers”部分,仅在进行跨平台工作时才需要。

这种方式解决了我的问题。