无法加载文件或程序集,PublicKeyToken=null
无法加载文件或程序集“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 技术交流群。
发布评论
评论(4)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
此错误通常意味着未找到程序集。
尝试验证该文件是否存在于应用程序运行的目录中。
如果您仍然无法确定哪个文件加载失败,请尝试使用 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.