Hi
We are converting our delphi5 projects to delphi 2007. We want to do the compilations thru the MsBuild action . But the exe is produced with the original version number. How can I set the Version numbers during the Build?
Thanks Daphna Levin
Hi
We are converting our delphi5 projects to delphi 2007. We want to do the compilations thru the MsBuild action . But the exe is produced with the original version number. How can I set the Version numbers during the Build?
Thanks Daphna Levin
Hi Daphna
The delphi msuild task does not deal with version information, it is is all controlled by the IDE. That is why we chose not to rely on the msbuild task for our D2007 support. You will have to create an rc file and use the Win32 Version Info Updater action to update it, and then use the resource compiler (BRCC32) to compile the rc file to a .res file (this is the file the delphi ide updates). The rc file will also need to reference your application's icon as well.