无法加载文件或程序集“扩展”或其依赖项之一.系统找不到指定的文件
本文关键字:文件 系统 找不到 程序集 加载 扩展 依赖 | 更新日期: 2023-09-27 18:36:39
我扩展了一些控件,并将它们放在应用程序根目录下的"扩展"文件夹中。但是我收到此错误:
Could not load file or assembly 'Extensions' or one of its dependencies. The system cannot find the file specified.
Line 7: <%@ Register TagPrefix="RE" Namespace="MyApplication.Extensions" Assembly="Extensions" %>
Line 8:
我尝试了以下方法:
1-删除临时 ASP.Net 文件
的内容2- 清洁 - 重建
3-关闭和打开视觉工作室2012,但仍然得到相同的错误
任何其他建议,为什么它可能看不到扩展文件夹?
从Adriano Repetti上面的评论中,事实证明我使用了错误的程序集,所以这是正确的注册方式:
<%@ Register TagPrefix="RE" Namespace="MyApplication.Extensions" Assembly="MyApplication" %>