5
Could not load file or assembly 'NuGet.Core, Version=1.6.30117.9648, Culture=neutral,  
PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's  
manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

我该如何解决这个问题?And.Next 文本错误:

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value..[HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

从堆栈跟踪:

[FileLoadException: Could not load file or assembly 'NuGet.Core,   
Version=1.6.30117.9648, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of  
its dependencies. The located assembly's manifest definition does not match the  
assembly reference. (Exception from HRESULT: 0x80131040)]

这是我在 Azure 中的第一个项目。我不知道该怎么做。谢谢您的考虑!

UPD:似乎我的项目中存在错误。例如,在错误中:“NuGet.Core,Version=1.6”在我的程序参考中是 Version=2.6,而在“packages.config”中是相同的 2.6 版本。我在哪里可以更改此错误?

4

1 回答 1

4

这看起来不太像 Azure 问题,而更像是 Visual Studio 问题。如果您有一个引用了 NuGet 的项目,请将其删除。NuGet 应该集成到 VS 中,而不是集成到您的项目中。然后更新你的 NuGet 版本。

在 Visual Studio 2012 中:

工具 -> 库包管理器 -> 包管理器设置 -> 包管理器 -> 包源,然后单击更新。

来源是https://nuget.org/api/v2/

于 2013-08-14T16:58:55.263 回答