SharePoint 网络错误
程序集生成失败 - 引用的程序集“ClockControlWebPart”没有强名称
我无法理解此错误......
Assembly generation failed -- Referenced assembly 'ClockControlWebPart' does not have a strong name
I can't understand this error....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在构建的大多数 lilkey 程序集都是强命名的,因此它无法引用非强命名的程序集。
请注意,C# 编译器生成的每个错误开头都有代码(如 CS1234)。搜索此代码可能会在 MSDN 上为您提供文章,其中解释了错误以及发生错误时的最常见情况。
Most lilkey assembly you are building is strongly named and as result it can't reference assemblies that are not strongly named.
Note that each error C# compiler produces have code in the beginning (like CS1234). Searching on for this code will likely give you article on MSDN with explanation of the error and most common cases when it happens.
使用 sn.exe 使其命名为强,并将其添加到 web.config 中更安全的控件中,希望这能消除错误。
make it strong named , using sn.exe and add it to safer controls in your web.config, hope this shall remove the error.