gpt4 book ai didi

c# - 是否可以忽略程序集 list 不匹配?

转载 作者:太空狗 更新时间:2023-10-29 18:35:51 25 4
gpt4 key购买 nike

我正在尝试在我使用 NuGet 引入的 asp.net 网站中使用几个库。

问题是我收到这个错误:

Could not load file or assembly 'AWSSDK, Version=1.5.9.1, Culture=neutral, PublicKeyToken=cd2d24cd2bace800' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

我尝试使用的库之一需要使用 AWSSDK,但显然它正在寻找我无法再获得的旧版本。

是否可以忽略此错误?

这是一个全新的网站,里面还没有代码,只是NuGet拉进来的,web.config是空的。

编辑:

我添加了 Fusion 日志记录,现在我得到:

=== Pre-bind state information ===
LOG: User = WIN-FSSH1EIG4NE\Max
LOG: DisplayName = AWSSDK, Version=1.5.9.1, Culture=neutral, PublicKeyToken=cd2d24cd2bace800
(Fully-specified)
LOG: Appbase = file:///C:/Users/Max/Documents/Visual Studio 2010/WebSites/images.RepZio/
LOG: Initial PrivatePath = C:\Users\Max\Documents\Visual Studio 2010\WebSites\images.RepZio\bin
Calling assembly : ImageResizer.Plugins.S3Reader, Version=3.3.2.447, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Users\Max\Documents\Visual Studio 2010\WebSites\images\web.config
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Post-policy reference: AWSSDK, Version=1.5.9.1, Culture=neutral, PublicKeyToken=cd2d24cd2bace800
LOG: Attempting download of new URL file:///C:/Users/Max/AppData/Local/Temp/Temporary ASP.NET Files/root/8dcd52e9/53da58e/AWSSDK.DLL.
LOG: Attempting download of new URL file:///C:/Users/Max/AppData/Local/Temp/Temporary ASP.NET Files/root/8dcd52e9/53da58e/AWSSDK/AWSSDK.DLL.
LOG: Attempting download of new URL file:///C:/Users/Max/Documents/Visual Studio 2010/WebSites/images/bin/AWSSDK.DLL.
WRN: Comparing the assembly name resulted in the mismatch: Revision Number
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated.

如果我添加下面评论中提到的 bindingRedirect,我会得到同样的错误。

最佳答案

最新 (1.5.13.0) AWSSDK 版本似乎使用与之前版本不同的 key 进行签名。很遗憾,bindingRedirect 将无法工作。

进行如下操作:

打开包管理器控制台(工具 > 库包管理器 > 包管理器控制台)并键入:

PM> Uninstall-Package -Force AWSSDK

其次是:

PM> Install-Package AWSSDK -Version 1.5.12.1

然后仔细检查您的 web.config 文件。确保它仅包含 AWSSDK 的以下绑定(bind)重定向:

<dependentAssembly>
<assemblyIdentity name="AWSSDK" publicKeyToken="cd2d24cd2bace800" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.5.12.1" newVersion="1.5.12.1" />
</dependentAssembly>

现在,您的项目应该可以开始了。

关于c# - 是否可以忽略程序集 list 不匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14921297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com