我有两个项目,项目a和项目b。projecb是一个控制台应用程序,它依赖于ProjectA。昨天,一切都很好,但今天突然当我运行ProjectB时,我得到了这个:

BadImageFormatException未处理: 无法加载文件或程序集“ProjectA, Version=1.0.0.0, Culture=中性,PublicKeyToken=null”或其依赖项之一。试图加载格式不正确的程序。

两者都只是常规项目,不依赖于任何其他非。网络项目。两者都是完全的。net -没有本机代码,也没有P/Invoke。我有其他项目依赖于ProjectA,仍然工作得很好。

我尝试过的事情:

Make sure both projects are set to "Any CPU," with the build checkbox checked. They are. Make sure both projects are for the same Target Framework (.Net 4.0 Client Profile). Under ProjectB --> References --> ProjectA --> Properties, make sure "Copy Local" is set to "True" _ (I verified that ProjectA.dll is being copied correctly) Clean/Rebuild the solution. I even tried manually deleting the /bin and /obj folders in both projects. Restart Visual Studio. Restart my computer. Check out an entirely new copy of the repository.

但还是得到相同的错误。我不知道我做了什么导致了这一切,也不知道该怎么补救。什么好主意吗?


当前回答

下面的方法为我解决了这个问题,取消选中“Prefer” 32位”:

其他回答

我在Visual Studio 2015中运行单元测试(xunit)时遇到了这个问题,并遇到了以下修复:

Menu Bar -> Test -> Test Settings -> Default Processor Architecture -> X64

我在同一个解决方案中的多个项目中遇到了同样的问题,我最终将所有目标框架设置为. net Framework 4和目标CPU的x86,最终成功编译。

在我的案例中,将IIS Express Bitness从“默认”更改为“x86”有帮助。

我所有的项目都以“x86”作为平台目标。

对于visual studio的新版本(本答案为v16.10),可以通过手动更改解决方案平台来修复该问题。对我来说,从“任何CPU”改为“x86”后,它就工作了。

点击解决方案平台下拉菜单,其中任何CPU出现在下面的图像。 进入配置管理器。 单击new并根据您的工作情况添加平台x86或x64(32或64位)。 重新启动项目。

Chilkat . net 4.5程序集要求在应用程序运行的任何计算机上安装vc++ 2012或2013运行时。大多数电脑都已经安装了它。您的开发计算机将拥有它,因为已经安装了Visual Studio。但是,如果部署到所需的vc++运行时不可用的计算机上,则会出现上述错误:

安装所有的波纹包

vcredist_x64 for Visual Studio 2013

vcredist_x86 for Visual Studio 2013

Visual Studio 2012的vcredist_x64

Visual Studio 2012 vcredist_x86的Visual c++可重分发包