I have a Delphi XE project and am trying to change the version number of a program before creating it using MSBuild. The version number information is in the DPROJ file, but if I change these values, the version number will not change. I think the reason is that when changing the version number in the IDE, Delphi saves the changes in the DPROJ and RES files.
Is there a way to compile the RES file from the command line with the changes to the DPROJ file? I found this question , which suggested saving the version number in an INC file and including it in the project, but this is a bit more complicated than just making changes to DPROJ.
source
share