在没有 app.config 的 .NET exe 中禁用authenticode签名验证
有谁知道如何在不使用应用程序配置文件的情况下禁用 .NET 可执行文件中的authenticode签名验证(以避免启动缓慢)? 换句话说,执行此操作:
<configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>
无需 app.config。 是否可以?
Does anyone know how to disable authenticode signature verification in a .NET executable (to avoid slow startup) without using an application config file? In other words, do this:
<configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>
without an app.config. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果允许您修改 Main() 方法,那么您可以在 Main 中执行以下操作:
这将允许您不需要应用程序配置文件,但能够在应用程序配置文件中进行您想要的所有自定义。
If you are allowed to modify the Main() method, then what you could do is the following in your Main:
This will allow you not to have an application config file, but be able to have all the customization you would want to have in the application config file.
好吧,根据 MSDN,元素generatePublishersEvidence 只能在配置文件中使用:
请参阅 http://msdn.microsoft.com/en-us/library/bb629393 .aspx。
Well, according to MSDN the element generatePublishersEvidence can only be used in a configuration file:
See http://msdn.microsoft.com/en-us/library/bb629393.aspx.