如何以编程方式创建具有强名称的 .NET 程序集?
有没有办法使用 CSharpCodeProvider 创建强名称程序集?
Is there a way to create a strong-named assembly using CSharpCodeProvider?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以在编译时发送到 CSharpCodeProvider 的 CompilerParameters 的 CompilerOptions 属性中指定 /keyfile: 选项。
You could also specify the /keyfile: option in the CompilerOptions property of the CompilerParameters you send to the CSharpCodeProvider when compiling.
请参阅 SN.EXE (http://msdn.microsoft.com /en-us/library/k5b5tt23(VS.80).aspx )。您必须在指向密钥文件的程序集中执行该操作才能进行签名。
See SN.EXE ( http://msdn.microsoft.com/en-us/library/k5b5tt23(VS.80).aspx ). You'll have to execute that on your assembly pointing to a key file to do the signing.