gpt4 book ai didi

c# - Visual Studio 添加 DLL 作为引用错误

转载 作者:行者123 更新时间:2023-11-30 22:42:39 33 4
gpt4 key购买 nike

我正在向项目添加库,但出现以下错误:

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.

我不太确定我必须调整什么才能让它运行。任何人都知道应该进行哪些更改?

谢谢,

下午

最佳答案

正如 Marc 所说,理想情况下,您将在 .NET 4 中重建,使您的项目面向 .NET 3.5 或更低版本。为 v2 CLR 构建的混合模式程序集使用“遗留”运行时激活技术,该技术不能很好地与 v4 CLR 在同一进程中运行多个 CLR 的能力配合使用。

或者,您可以将此信息添加到您的 app.config 中:

<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>
</configuration>

参见 this question , this documentation还有这个blog post了解详情。

关于c# - Visual Studio 添加 DLL 作为引用错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4311274/

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