C# xaml System.BadImageFormatException

本文关键字:BadImageFormatException System xaml | 更新日期: 2023-09-27 18:27:51

我有一个WPF应用程序,昨天正在构建并运行良好。今天当我打开它时,我得到了这个错误:

http://oi61.tinypic.com/vzady8.jpg

这似乎发生在我的xaml-cs代码运行之前,因为没有断点。我认为这与加载程序集有关。

这是完整的错误,看看内部异常,因为我认为这是真正的错误:

http://pastebin.com/xUuamwae

这可能与WindowsBase dll有关,因为它似乎突出显示了这一行,或者可能是内部异常导致WindowsBase在这里死亡?

内部异常:

InnerException: System.BadImageFormatException
HResult=-2147024885
Message=Could not load file or assembly 
'Cognex.InSight.Controls.Display, 
Version=4.9.2511.0,  Culture=neutral, 
PublicKeyToken=6b9774afddb09935' or one of its dependencies. 
An attempt was made to load a program with an incorrect format.

C# xaml System.BadImageFormatException

我将项目更改为x86,它成功了。