1

我正在使用 .NET 框架 4.5 在 C# 上构建应用程序,但我使用的其中一个 dll 是使用 .NET 2.0 构建的,因此我正在尝试添加混合模式汇编功能。

这是我收到的错误:Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.

我试过这个http://msdn.microsoft.com/en-us/library/bbx34a2h.aspx现在我的 app.config 看起来像这样:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
  </startup>
</configuration>

当我在 Visual Studio 中以发布模式运行应用程序时,它会按预期运行,但是当我尝试在其工作环境中运行它时,它会因上述错误而崩溃。

我也试过这个[在发布模式下构建时出现混合模式错误],但没有成功。

我还缺少其他东西吗?

4

1 回答 1

1

正如@Amitd 建议的那样,我将 [appname].exe.config 文件复制到了工作目录,现在该应用程序按预期工作了!

于 2012-10-16T17:20:37.513 回答