我有一个项目,我想在其中使用一些。net 4.0的功能,但核心要求是我可以使用System.Data.SQLite框架,它是针对2.X编译的。我看到提到这是可能的,比如这里接受的答案,但我不知道如何实现这一点。

当我只是试图运行我的4.0项目,同时引用2。我得到:

混合模式程序集是根据运行时版本“v2.0.50727”构建的 并且不能在4.0运行时加载 配置信息。

需要什么“额外配置”?


当前回答

这个论坛贴在。net框架开发者中心。这可能会提供一些见解。

(添加到应用程序的配置文件中。)

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

其他回答

当我们切换到Visual Studio 2015时,我遇到了这个问题。上面的答案对我们都没用。最后,我们通过将以下配置文件添加到机器上的所有sgen.exe可执行文件中来让它工作

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

特别是在这个位置,即使我们的目标是。net 4.0:

C:\Program Files (x86)\Microsoft sdk \Windows\v10.0A\bin\NETFX 4.6 Tools

经过3-4小时的谷歌搜索,我找到了解决这个问题的方法。我添加了以下内容

<startup selegacyv2runtimeactivationpolicy="true">
  <supportedruntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client" />
</startup>

If this doesn't solve your problem then--> In the Project References Right Click on DLL where you getting error --> Select Properties--> Check the Run-time Version --> If it is v2.0.50727 then we know the problem. The Problem is :- you are having 2.0 Version of respective DLL. Solution is:- You can delete the respective DLL from the Project references and then download the latest version of DLL's from the corresponding website and add the reference of the latest version DLL reference then it will work.

我也有这个问题与类库,如果有人有问题与类库添加到您的主应用程序。只需添加

<startup useLegacyV2RuntimeActivationPolicy="true">

到你的主应用程序,然后由类库选择。

如果您在web服务中工作,v2.0程序集是由WcfSvcHost.exe加载的依赖项,则必须包含

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

在. .\Microsoft Visual Studio 10.0\Common7\IDE\ WcfSvcHost.exe.config文件

这样,Visual Studio就能够在运行时通过加载器发送正确的信息。

在此位置添加以下内容C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\x64 文件名:sgen.exe。config(如果你没有找到这个文件,创建并添加一个)

<?XML版本="1.0"?> < >配置 运行时> < < generatePublisherEvidence启用= " false " / > 运行时> < / <启动useLegacyV2RuntimeActivationPolicy = " true " > <supportedRuntime version="v4.0" /> 启动> < / > < /配置

这样做解决了问题