Delphi 2007 VCL 项目名称与编译后的 Exe 名称不同?

发布于 2024-11-18 05:08:33 字数 126 浏览 3 评论 0原文

有没有办法让一个名为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

错爱 2024-11-25 05:08:33

您可以将 MSbuild 与构建后事件

在此处输入图像描述

例如,您可以使用以下命令创建 exe 的副本使用这样的命令命名您想要的名称

DEL  "$(OUTPUTDIR)SomethingDifferent.Exe"
COPY "$(OUTPUTDIR)$(OUTPUTFILENAME)" "$(OUTPUTDIR)SomethingDifferent.Exe"

You can use MSbuild with the Post-build event

enter image description here

for example you can create a copy of your exe with the name which you want using a command like this

DEL  "$(OUTPUTDIR)SomethingDifferent.Exe"
COPY "$(OUTPUTDIR)$(OUTPUTFILENAME)" "$(OUTPUTDIR)SomethingDifferent.Exe"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文