Detected package downgrade warning (dotnet core, vs 2017)(检测到包降级警告(dotnet core,vs 2017))
问题描述
我刚刚为我的解决方案(dotnet core 1.1 项目)更新了所有 nuget 包.
I have just updated all my nuget packages for my solution (dotnet core 1.1 project).
我现在收到以下警告,但我真的不知道它们是什么意思.
I am now getting the following warnings and I don't really know what they mean.
更新:我仍然收到上述警告.我的 web 项目警告 Microsoft.NETCore.App 包(见下面的截图),我的 lib 项目警告 NETStandard.Library(见上面的截图)
Update: I am still getting warnings mentioned above. My web projects warn about the Microsoft.NETCore.App package (see screenshot below) and my lib projects warn about NETStandard.Library (see screenshot above)
尝试在 NuGet 包管理器中更新 Microsoft.NETCore.App 时,我收到以下错误:
When trying to update Microsoft.NETCore.App in the NuGet package manager, I am getting the following error:
希望有人可以帮助我摆脱这些警告并设置应有的一切,以便我可以更新我的所有软件包.
Hope someone can help me get rid of those warnings and setup everything it is meant to be, so I can update all my packages.
推荐答案
根据上面的答案,工作解决方案是从您的 csproj 文件中删除以下行.
As per answer above the working solution is to remove the following line from your csproj file.
网络应用项目:
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion>
Lib 项目:
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion>
这篇关于检测到包降级警告(dotnet core,vs 2017)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:检测到包降级警告(dotnet core,vs 2017)
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01