Delphi 2007 VCL 项目名称与编译后的 Exe 名称不同?
有没有办法让一个名为“SomeProject”的项目创建一个名为“SomethingDifferent.exe”的EXE?在 .net 中,让项目名称独立于生成的程序集名称很简单,但我不知道如何在 Delphi 2007 中执行等效操作。
Is there a way to have a Project named "SomeProject" that creates an EXE named "SomethingDifferent.exe"? In .net it is simple to have your project name be independent of your generated Assembly name, but I don't see how to do the equivalent in Delphi 2007.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 MSbuild 与构建后事件
例如,您可以使用以下命令创建 exe 的副本使用这样的命令命名您想要的名称
You can use MSbuild with the Post-build event
for example you can create a copy of your exe with the name which you want using a command like this