3

我有一个 C# 应用程序,由一个引用许多 dll 的单个 exe 组成,所有这些都是用 .NET 2 构建的。我想集成一个用 .NET 4 构建的 dll,所以要做到这一点,我首先需要在 .NET 4 中重建 exe 和确保一切都像以前一样工作。

所以我只用 .NET 4(完整配置文件)重建了 exe,用它替换了旧的 exe,然后重新启动了应用程序。我收到以下错误:

"Failure loading the types from the assembly 'blorg.dll'"(其中 'blorg' 是程序集真实名称的网络安全别名,它是 exe 引用的旧 .NET 2 程序集之一。)

内部异常是:

"Could not load file or assembly file 'file:///C:\\(...)blorg or one of its depedencies. The system cannot find the file specified.":"file:///C:\\(...)blorg"

FusionLog 说:

=== Pre-bind state information ===
LOG: User = NT AUTHORITY/SYSTEM
LOG: Where-ref bind. Location= C:\(...)\blorg
LOG: Appbase = file:///C:/(...)/
LOG: Initial PrivatePath = NULL
Calling assembly : (Unknown).
===
LOG: This bind starts in LoadFrom load context.
WRN: Native image will not be probed in LoadFrom context. Native image will only be probed in default load context, like with Assembly.Load().
LOG: Using application configuration file: C:\(...)\blorg.exe.config
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\config\machine.config.
LOG: Attempting download of new URL file:///C:/(...)/blorg

有问题的 dll 就在与 exe 相同的文件夹中。当我在 VS2005 中为 .NET 2 构建 exe 时,整个事情运行良好。唯一发生的变化是我打开将可执行文件的解决方案(可执行文件有自己的解决方案)转换为 VS2010,将目标更改为 .NET 4 ,重建它并将其复制粘贴到文件夹中。哦,它正在调试中,而其余的都在发布中。我在网上搜索了一段时间,但没有找到任何可以帮助我诊断问题的东西。有什么想法吗?

4

1 回答 1

1

事实证明,其中一些程序集或它们的依赖项是混合模式 .NET 2.0,因此修复是进入 app.config 并将属性“useLegacyV2RuntimeActivationPolicy”添加到启动元素:

<startup useLegacyV2RuntimeActivationPolicy="true">
  <supportedRuntime version="4.0" sku=".NETFramework,Version=v4.0" />
</startup>
于 2012-07-19T15:38:24.643 回答