Nuget package update issues(Nuget 包更新问题)
问题描述
我在更新 Visual Studio 2013 中的 Nuget 包以寻求解决方案时遇到问题.
I am having problems updating Nuget packages in Visual Studio 2013 for a solution.
我右键单击解决方案,选择管理解决方案包",然后在更新选项卡中选择全部更新".
I right-clicked the solution, chose "Manage packages for solution", then choose "Update All" in the update tab.
这一切似乎都更新得很好,但是,在更新选项卡中,已更新的软件包仍显示为需要更新.如果我再去更新它们,项目列表会显示每个具有包的项目,并且每个复选框都被禁用,就好像它已经知道它们已经更新一样.据我所知,每个项目都已更新.
It all seemed to update fine, however, in the update tab, the packages that were updated are still showing as needing to update. If I then go to update them again, the list of projects shows each project that has the package, and each checkbox is disabled, as if it already knows they have been updated. So as far as I can tell, every project has been updated.
我已重新启动 Visual Studio
I have restarted Visual Studio
以前有人遇到过这个吗?
Anyone else come across this before?
推荐答案
检查你的包文件夹.在我看来,当 Nuget 出于某种原因无法删除旧包版本时,就会出现此问题.因此,如果您有一个MyLib 4.0.3.0"文件夹和一个MyLib 4.0.5.0"文件夹,那么它会在已安装的软件包列表中显示它们,并且它会认为 MyLib 需要更新.
Check your packages folder. It seems to me that this problem occurs when Nuget cannot, for whatever reason, delete the old package version. So if you've got a "MyLib 4.0.3.0" folder and a "MyLib 4.0.5.0" folder, then it will show both of them in the list of installed packages, and it will think that MyLib needs to be updated.
这篇关于Nuget 包更新问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Nuget 包更新问题
基础教程推荐
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
