无法加载文件或程序集
我正在使用 Telerik Controls 开发一个 asp.net 项目。 每次运行我的项目时,我都会收到以下错误:
无法加载文件或程序集 'Microsoft.Practices.EnterpriseLibrary.Configuration.Design, Version=3.1.0.0、Culture=neutral、PublicKeyToken=null' 或其之一 依赖关系。
找到的程序集的清单定义与 装配参考。 (HRESULT 异常:0x80131040)
但是当我刷新页面时,它工作正常。为什么我会收到此错误?
谢谢
I am working on a project in asp.net using Telerik Controls.
Everytime when i run my project i am getting the following error:
Could not load file or assembly
'Microsoft.Practices.EnterpriseLibrary.Configuration.Design,
Version=3.1.0.0, Culture=neutral, PublicKeyToken=null' or one of its
dependencies.The located assembly's manifest definition does not match the
assembly reference. (Exception from HRESULT: 0x80131040)
But when I refresh the page, its working fine. Why I am getting this error?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当程序集文件的清单定义与实际引用不匹配时,会发生此错误。
请参阅此处了解更多信息:
您可以尝试将参考版本从
Version=3.1.0.0 到
Version=3.1.0.1
或其他版本(如果您可能知道的话)。This error occurs when the manifest definition of the assembly file doesn't match the actual reference.
See here for more info:
You could try changing the reference version from
Version=3.1.0.0
toVersion=3.1.0.1
, or another version if you might know it.