gpt4 book ai didi

c# - DLL 加载时出现 FileLoadException

转载 作者:行者123 更新时间:2023-11-30 17:04:14 29 4
gpt4 key购买 nike

所以,我知道有很多类似的问题,但在过去的一天里我已经翻阅了很多答案,但没有任何帮助。

我正在开发一个引用大量外部 DLL 的 WPF 应用程序。特别是有一个 DLL,称为 DefinitionInterpreter,它已被证明会引起麻烦。在我引用它的每个项目中,它都很固执,选择不工作。我能够让它在我的单元测试套件中工作,但是,我无法尽我所能让它在我的 WPF 应用程序中工作。

我已经尝试过 GAC,清理我的项目,添加和删除它,重新启动,检查版本,检查依赖项,但没有任何效果。

我不断收到同样的异常:

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

我已经尝试在 ildasm.exe 中打开 DLL,但没有显示任何异常。唯一的依赖项是 System.Xml、System.Core 和 mscorlib。

当我检查 list 时,它验证版本是 3.6.0.0

真正让我着迷的是它在我的一个项目中工作,但我无法在另一个项目中工作,即使它们引用相同的 DLL(相同的路径和所有内容)。

有什么建议吗?我正在使用 .NET 4.0(项目要求它是 4.0)并尝试了 x86 和 x64。

编辑:

查看 Fusion 日志详细信息后,我得到以下输出:

*** Assembly Binder Log Entry  (7/18/2013 @ 7:07:42 PM) ***

The operation failed.
Bind result: hr = 0x80131040. No description available.

Assembly manager loaded from: C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll
Running under executable E:\Src\Hermes\Tool\bin\Debug\HermesClient.vshost.exe
--- A detailed error log follows.

=== Pre-bind state information ===
LOG: DisplayName = DefinitionInterpreter, Version=3.6.0.0, Culture=neutral, PublicKeyToken=null
(Fully-specified)
LOG: Appbase = file:///E:/Src/Hermes/Tool/bin/Debug/
LOG: Initial PrivatePath = NULL
LOG: Dynamic Base = NULL
LOG: Cache Base = NULL
LOG: AppName = HermesClient.vshost.exe
Calling assembly : SomeAssembly, Version=13.5.13.0, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: E:\Src\Hermes\Tool\bin\Debug\HermesClient.vshost.exe.Config
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Attempting download of new URL file:///E:/Src/Hermes/Tool/bin/Debug/DefinitionInterpreter.DLL.
LOG: Assembly download was successful. Attempting setup of file: E:\Src\Hermes\Tool\bin\Debug\DefinitionInterpreter.dll
LOG: Entering run-from-source setup phase.
LOG: Assembly Name is: DefinitionInterpreter, Version=3.6.0.0, Culture=neutral, PublicKeyToken=75a99a2a5bcd4c96
WRN: Comparing the assembly name resulted in the mismatch: PUBLIC KEY TOKEN
ERR: The assembly reference did not match the assembly definition found.
ERR: Run-from-source setup phase failed with hr = 0x80131040.
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated.

我的CSProj中的引用如下:

    <Reference Include="DefinitionInterpreter, Version=3.6.0.0, Culture=neutral, PublicKeyToken=75a99a2a5bcd4c96, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\DefinitionInterpreter.dll</HintPath>
<Private>True</Private>
</Reference>

当我执行命令 sn -T DefinitionInterpreter.dll 时,我得到 75a99a2a5bcd4c96。老实说,我不知道它在运行时如何认为公钥 token 为空以及为什么不匹配。

最佳答案

因此从日志看来“SomeAssembly”链接到该 DLL 的未签名版本,但所有本地版本都已签名。

如果您自己构建“SomeAssembly”——检查对“DefinitionInterpreter”的引用是否指向已签名版本,否则请使用 ILDasm 仔细检查“SomeAssembly”确实是指未签名版本,并要求所有者提供另一个版本。

关于c# - DLL 加载时出现 FileLoadException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17735009/

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