Delphi 2007 VCL Project Name Different from Compiled Exe Name? -


is there way have project named "someproject" creates exe named "somethingdifferent.exe"? in .net simple have project name independent of generated assembly name, don't see how equivalent in delphi 2007.

you can use msbuild post-build event

enter image description here

for example can create copy of exe name want using command

del  "$(outputdir)somethingdifferent.exe" copy "$(outputdir)$(outputfilename)" "$(outputdir)somethingdifferent.exe" 

Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -