RuntimeFrameworkVersion

RuntimeFrameworkVersion

我已经使用dotnet创建了一个示例项目,但是在构建项目时出现以下错误:

有什么问题?我正在使用Visual Studio 2017版本15.7.0。

最佳答案

我有类似的错误消息:

我将RuntimeFrameworkVersion设置添加到了.csproj文件中,它为我解决了一个问题:

<PropertyGroup>
   <TargetFramework>netcoreapp2.0</TargetFramework>
   <RuntimeFrameworkVersion>2.0.7</RuntimeFrameworkVersion><!--here is the fix-->
</PropertyGroup>

<ItemGroup>
   <PackageReference Update="Microsoft.NETCore.App" Version="2.0.7" />
</ItemGroup>

09-25 19:15