最终 .exe 的 ILMERGE 图标
我有几个 dll 和一个 .exe 文件(称为 input.exe)。 当前使用 ILMERGE 将它们合并到单个 output.exe 文件中。
input.exe 文件带有一个图标。 然而,创建的output.exe在input.exe中没有图标
所以总而言之,我想要一个output.exe的图标(使用ILMERGE创建)
你能帮我解决这个问题吗?
谢谢。
I have a couple of dlls and an .exe file (call it input.exe). These are currently merged into a single output.exe file using ILMERGE.
The input.exe file has an icon with it.
However the output.exe that is created does not have the icon in input.exe
So to sum it up, I would like to have an icon for the output.exe (that is created using ILMERGE)
Could you help me figure this out?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该将 input.exe 指定为主程序集(在命令行中指定的第一个程序集),并且它应该在合并的可执行文件中包含图标。
至少我使用的版本是这样的:2.9.210.0。
You should specify input.exe as your primary assembly (the first assembly specified in the command line) and it should include the icon in the merged executable.
At least it does so with the version I'm using: 2.9.210.0.
为什么不使用工具并将图标制作为您想要的任何内容?
Why not use a tool and make the icon anything you want?