C#报错:System.BadImageFormatException: 未能加载文件或程序集"XXX" 或它的一个依赖项目

Winform程序报错,异常代码如下:

System.BadImageFormatException: 未能加载文件或程序集“Leadton.Common, Version=3.0.2951.34627, Culture=neutral, PublicKeyToken=null”或它的某一个依赖项。试图加载格式不正确的程序。
文件名:“Leadton.Common, Version=3.0.2951.34627, Culture=neutral, PublicKeyToken=null”
   在 Allen.Tools.SystemTools.AppForm.LableCopy.barcd_KeyDown(Object sender, KeyEventArgs e)
   在 System.Windows.Forms.Control.ProcessKeyEventArgs(Message& m)
   在 System.Windows.Forms.Control.WmKeyChar(Message& m)
   在 System.Windows.Forms.Control.WndProc(Message& m)
   在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   在 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

解决办法:

   报错电脑是Win764位系统,程序用于Win732位系统无报错,更改目标平台为X86后程序正常。

总结:

    32位系统需要更改目标平台为 Any CPU

    64位Win7系统需要更改目标平台为X84

其他解决方法:

我遇到过这个问题有两次,不过环境不同。 

第一次:Windows 2008 Server R2 64位; 

第二次:Windows 7 64位; 

原因分析:操作系统是64位的,但发布的程序引用了一些32位的dll,所以出现了兼容性的问题。 

解决方案:IIS——应用程序池——高级设置——启用32位应用程序 :true

猜你喜欢

转载自blog.csdn.net/wuyingyy/article/details/105580326