.NET 4中的混合模式汇编

时间:2010-07-05 11:17:04

标签: .net .net-4.0 mixed-mode

我在大约2年前在.NET 2.0中编写了一个用于数据库访问的类库,并且一直在.NET 2.0,3.0和3.5上使用它。

在我正在处理的当前项目(这是一个.NET 4.0应用程序)中,尝试使用旧的忠实类库,我得到以下异常:


System.InvalidOperationException was unhandled
  Message=An error occurred creating the form. See Exception.InnerException for details.
    The error is: 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.
    Source=SchoolManager
  StackTrace:
       at SchoolManager.My.MyProject.MyForms.Create__Instance__[T](T Instance) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 190
       at SchoolManager.My.MyProject.MyForms.get_frmGeneric()
       at SchoolManager.My.MyApplication.OnCreateMainForm() in D:\Alex\Documents\Visual Studio 2008\Projects\School Manager\SchoolManager\My Project\Application.Designer.vb:line 35
       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)
       at SchoolManager.My.MyApplication.Main(String[] Args) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 81
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
  InnerException: System.IO.FileLoadException
       Message=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.
       Source=Dinofage.Data.XpressData
       StackTrace:
            at Dinofage.Data.XpressData.ExecuteSelectInternal(String selectCommand)
            at Dinofage.Data.XpressData.ExecuteSelect(String selectCommand)
            at SchoolManager.Academics.GetNewAdmissionCode(String academicYear) in D:\Alex\Documents\Visual Studio 2008\Projects\School Manager\SchoolManager\Modules\Academics.vb:line 89
            at SchoolManager.StudentDetail..ctor() in D:\Alex\Documents\Visual Studio 2008\Projects\School Manager\SchoolManager\UserControls\StudentDetail.vb:line 20
            at SchoolManager.frmGeneric.InitializeComponent() in D:\Alex\Documents\Visual Studio 2008\Projects\School Manager\SchoolManager\frmGeneric.Designer.vb:line 25
            at SchoolManager.frmGeneric..ctor()
       InnerException: 

可能有什么问题,如何解决?

7 个答案:

答案 0 :(得分:71)

最好的方法可能是在Visual Studio 2010中重新编译.NET 4.0的类库(即打开项目,转换它,并更改目标框架。)

如果您不能或不愿意这样做,那么您可以尝试将以下内容添加到.NET 4.0应用程序的app.config文件中:

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

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

答案 1 :(得分:21)

由于您的程序集是混合模式,因此它可能会从程序集中的非托管机器代码调用托管代码。通过.NET 4.0中新的进程内并行CLR版本支持,运行时不知道在发生这种情况时需要提供哪个CLR版本。你必须告诉它app.exe.config文件应该是这样的:

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

答案 2 :(得分:2)

另一种方式:在VB 2010 Express中,您可以打开项目并转到“编译”选项卡,然后转到Advanced Compile Options...。从名为.NET Framework 2.0的下拉列表中选择Target framework (all configurations)

答案 3 :(得分:1)

如果即使通过指定useLegacyV2RuntimeActivationPolicy =“true”也未通过,则可能需要安装与您的操作系统和.NET版本兼容的安装程序。您可以在http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki找到相同的内容。

在安装此安装程序之前,请从已安装的程序中卸载SQLite。这将在您的代码中显示错误。

如果在安装兼容设置后仍无法正常工作,则必须删除对先前DLL文件的引用,并添加对此兼容DLL文件的新引用。

当您添加对兼容DLL文件的引用时,您只需构建项目并且所有代码错误都已消失。

答案 4 :(得分:0)

您可以尝试在Visual Studio 2010中打开旧的忠实项目(类库),并允许它为您进行转换。

答案 5 :(得分:0)

如果还有其他人遇到这个问题,这是我的诊断: 你使用错误的SQLite包。 在http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki

下有许多版本的SQLite

例如,如果您使用x86 platorm定位.net 4.5,则应使用此文件:

在32位Windows的预编译静态链接二进制文件(.NET Framework 4.5)下

sqlite-netFx45-static-binary-bundle-Win32-2012-1.0.106.0.zip

答案 6 :(得分:0)

就我而言,将以下内容添加到 App.config 解决了我的问题:

<runtime>
  <loadFromRemoteSources enabled="true" />
</runtime>

这是它的样子:

<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
  </startup>
  <runtime>
    <loadFromRemoteSources enabled="true" />
  </runtime>
</configuration>