本文介绍了我在解码错误更新 NuGet 包时发现无效数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我一直在尝试从包管理器控制台和从上下文选项管理 NuGet 包更新 Visual Studio 2019 中的 NuGet 包,但在这两种情况下我都收到在解码时发现无效数据".错误.
I have been trying to update NuGet packages in Visual Studio 2019 from both package manager consoles and the manage NuGet packages from the context options, but in both cases I get "Found invalid data while decoding." error.
我必须恢复到 Visual Studio 2017 才能更新.有没有办法解决这个问题,还是我现在必须应对这种切换?
I have to revert to Visual Studio 2017 to update. Is there a way to deal with this or do I have to contend with this switching for now?
两种情况的错误输出如下:
The error outputs are as below for both scenarios:
推荐答案
Visual Studio 2019
Visual Studio 2019
- 转到菜单工具 → NuGet 包管理器 → 包管理器控制台.
- 输入
dotnet nuget locals all --clear
. - 清洁溶液.
- 从项目文件夹中删除
bin
和obj
文件夹.
- Go to menu Tools → NuGet Package Manager → Package Manager Console.
- Type
dotnet nuget locals all --clear
. - Clean the solution.
- Delete the
bin
andobj
folders from the project folder.
它 100% 有效.
这篇关于我在解码错误更新 NuGet 包时发现无效数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!