我可以将程序集转换为强命名程序集而不重新编译吗?
我发现 Microsoft KB 文章:
但看起来他们希望我在创建密钥后重新编译一对。有没有什么方法可以将程序集转换为强命名程序集而无需重新编译?
I found Microsoft KB article:
But it looks like they want me to recompile after I have created a key pair. Is there any way to just convert the assembly to a strong named assembly without recompiling?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Signer 工具对未签名的程序集进行签名。
You can use the Signer tool to sign an unsigned assembly.
你可以。
使用
sn.exe
和al.exe
工具对程序集进行强命名。请参阅此操作方法。
You can.
Use the
sn.exe
andal.exe
tools to strong name the assembly .See this howto.