使用强名称对程序集进行签名,可以,但是如果某些第 3 方 DLL 未签名怎么办?
我了解签名程序集背后的基本思想,但在使用 Telerik 或第二方 DLL 时遇到问题。 我有一个 .exe,它使用 2 个我自己的 .DLL,这些 DLL 又使用 Enterprise 库 DLL 和 Telerik DLL。
我给所有项目起了一个强名称 .snk,但是在编译时,编译器解释说企业库 DLL 等未签名,这是有道理的。
我不想使用 te sn.exe -Vr 命令关闭验证,甚至不想延迟签署我的项目。但这要如何运作呢?我很感激任何见解。
I understand the basic idea behind signing assemblies but have a problem when using Telerik or 2rd party DLLs.
I have an .exe that uses 2 of my own .DLLs, the DLLs in turn make use of the Enterprise library DLLs and Telerik DLLs.
I gave all my projects a strong name .snk, but when compiling the compiler explains that the enterprise library DLLs, for example, aren't signed, which makes sense.
I don't want to turn off the verification with te sn.exe -Vr command or even delay sign my projects. But then how is this going to work? I'm grateful for any insight.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
签署/辞职第三方集会虽然不方便,但并不是什么复杂的事情。
假设您想使用 default.snk 密钥对未签名的 dll(例如 System.ComponentModel.Composition.dll)进行签名:
打开 VS 命令提示符并 cd 到包含未签名 dll 的文件夹
在每个适用的 VS 项目中,删除并添加回来对签名程序集 System.ComponentModel.Composition.dll 的引用
It's inconvenient, but not rocket science to sign/resign third party assemblies.
Assuming you want to sign an unsigned dll like System.ComponentModel.Composition.dll with the default.snk key:
open the VS command prompt and cd to your folder with the unsigned dll(s)
In each applicable VS project, remove and add back the reference to your signed assembly System.ComponentModel.Composition.dll
是的,很有可能。
以下是步骤。< /a>
Yes, quite possible.
Here are the steps.