C# 上的 C++/CLI DLL 无法编译
我为一些本机 c++ 函数编写了一个包装器 DLL,并在 c++/CLI 中对其进行了编译,然后我添加了对 C# 项目的引用,函数在那里指示,但是当我尝试编译项目时,出现此错误:
其他信息:无法加载文件或程序集“lib,Version=1.0.3742.39593,Culture=neutral,PublicKeyToken=null”或其依赖项之一。尝试加载格式不正确的程序。
有什么问题吗?
I wrote a wrapper DLL for some native c++ functions and compiled it in c++/CLI, then I added a reference to C# project, functions indicates there, but when I try compile project I get this error:
Additional information: Could not load file or assembly 'lib, Version=1.0.3742.39593, Culture=neutral, PublicKeyToken=null' or one of its dependencies. An attempt was made to load a program with an incorrect format.
What's the problem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
64 位与 32 位不兼容是导致该错误的最常见原因。
在 C# 项目的 项目设置页面 中,您的
Platform target
将设置为Any CPU
。这意味着在 64 位系统上,程序将在 64 位进程中运行。然后它将无法加载针对 32 位的 DLL(本机 DLL 无法切换以适应该进程。)因此您需要将其设置为 x86。在 VS2010 中,新项目默认为 x86。
64-bit vs 32-bit incompatibility is the most common cause of that error.
In the Project settings page of the C# project your
Platform target
will be set toAny CPU
. This means that on a 64-bit system the program will run in a 64-bit process. It will then be unable to load DLLs that target 32-bit (native DLLs can't switch to suit the process.)So you need to set it to x86. In VS2010 the default will be x86 for new projects.