无法加载文件或程序集,PublicKeyToken=null

发布于 12-11 11:38 字数 255 浏览 0 评论 0原文

无法加载文件或程序集“NCrawler.GeckoProcessor”, Version=3.0.0.0、Culture=neutral、PublicKeyToken=null' 或其之一 依赖关系。

当我调用 CrawlUsingGeckoProcessor.Run();

这意味着什么?我可以单击“转到定义”,然后可以看到 Run() 方法。

Could not load file or assembly 'NCrawler.GeckoProcessor,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its
dependencies.

When I call CrawlUsingGeckoProcessor.Run();

What does this mean? I can click "go to definition" and I can see the Run() method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

时光是把杀猪刀2024-12-18 11:38:42

此错误通常意味着未找到程序集。
尝试验证该文件是否存在于应用程序运行的目录中。

如果您仍然无法确定哪个文件加载失败,请尝试使用 Fusion Log Viewer(从 Visual Studio 命令提示符运行 fuslogvw.exe)等工具来确定 CLR 正在尝试哪些文件加载以及从哪里加载,以便您可以准确地看到失败的原因。

This error usually means that the assembly was not found.
Try verifying that the file exists in the directory where your application is running.

If you still can't figure out which file fails loading, try using a tool such as Fusion Log Viewer (run fuslogvw.exe from the Visual Studio command prompt), to determine which files the CLR was trying to load and from where, so that you can see exactly what failed.

妥活2024-12-18 11:38:42

我遇到了同样的问题,原因是我在32位机器上为“x86”编译了我的EXE和DLL,因为它依赖于为Win32编译的C++\CLI库。然后我尝试在 64 位机器上从 64 位进程使用这个库。显然64位进程无法加载32位库,所以我得到了这个错误,这并不能真正帮助理解问题。

所以原因可能是您尝试从 64 位进程使用 32 位库。

I experienced the same problem, and the reason was that I compiled my EXE and DLL on 32 bit machine for "x86", because it depends on C++\CLI library compiled for Win32. Then I tried to use this library on 64 bit machine from 64 bit process. Obviously 64 bit process can't load 32 bit libraries, so I got this error, which does not really help to understand the problem.

So the reason could be that you try to use 32 bit library from 64 bit process.

旧人2024-12-18 11:38:42

在 nogard 答案的基础上构建,尝试将解决方案平台设置为 x86

在此处输入图像描述

Building over nogard answer, try setting the Solution Platform to x86

enter image description here

记忆之渊2024-12-18 11:38:42

尝试进入应用程序高级设置..启用32位处理..
如果应用程序是在 .net 2.0 中构建的并且当前服务器是 IIS 7

try going to app advance settings .. Enable 32 bit processing ..
if the app was built in .net 2.0 and current server is IIS 7

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文