签署 main .exe 后 ClickOnce 发布中引用的 dll 丢失
我添加了一个构建后步骤,以使用 pfx 文件在我的可执行文件上使用signtool。这种情况成功发生,但当我尝试使用 ClickOnce 发布时,有些东西被破坏了。如果我只是构建,我的 .exe.manifest 将有一个用于安装引用的条目。但是,如果我选择发布(使用 ClickOnce),.exe.manifest 会发生更改,因此甚至不会提及引用。如果我不运行signtool 构建后步骤,则不会发生这种情况。
更新 似乎在发布时,ClickOnce 会扫描 .exe 文件中的依赖项并重建清单。但是,如果 .exe 是使用 Signtool 签名的,则 ClickOnce 无法正确提取所有详细信息。结果是清单中缺少一些内容。恶心。
I added a post-build step to use signtool on my executable using a pfx file. This happens successfully but something gets broken when I try to publish with ClickOnce. If I just build, my .exe.manifest will have an entry to install the reference. However, if I select publish (with ClickOnce), the .exe.manifest gets altered so that the reference isn't even mentioned. This does not happen if I do not run the signtool post-build step.
Update It seems that at the time of publish, ClickOnce scans the .exe file for dependencies and rebuilds the manifest. However, if the .exe is signed with signtool, ClickOnce is not able to properly pull all the details. The result is that the manifest has missing pieces. Yuck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你为什么在exe上使用signtool?如果要对 exe 进行签名,可以在“签名”选项卡中指定(对程序集进行签名 - 强命名选项)。
Why are you using signtool on the exe? If you want to sign the exe, you can specify that in the Signing tab (sign the assembly -- the strong naming option).