gpt4 book ai didi

c# - .NET 4 中的 FileLoadException

转载 作者:行者123 更新时间:2023-12-02 05:55:17 26 4
gpt4 key购买 nike

我正在尝试使用 OpenNURBS 工具包 (see here) 构建应用程序我在调试时收到 FileLoadException 并显示以下消息:

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.

OpenNURBS 工具包是此时项目中唯一的非系统程序集,因此我知道问题出在该文件上。这些假定的配置选项在哪里以及是什么?任何帮助将不胜感激。

最佳答案

您需要将以下配置添加到app.config文件中:

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

详情:

<startup> Element @ MSDN

关于c# - .NET 4 中的 FileLoadException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3190841/

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