Attila Kovacs 648 Posted August 2, 2023 Just found out that if I uncheck the "Include version information in project" under Project Options -> Version Info, it will add the "<VerInfo_IncludeVerInfo>false</VerInfo_IncludeVerInfo>" to the dproj file and it stops inheriting the version info settings.... Is that still the case in the current IDE? Ā Share this post Link to post
Uwe Raabe 2129 Posted August 2, 2023 Can you elaborate on what do you expect instead? Share this post Link to post
Attila Kovacs 648 Posted August 3, 2023 1 hour ago, Uwe Raabe said: Can you elaborate on what do you expect instead? Of course. The state as if it were never checked, without explicit "false" in the dproj, inherinting the settings from above. Share this post Link to post
Pat Foley 54 Posted August 3, 2023 To view the dproj file more readily, I used treeview's save to file to remove some of the nesting of xml files.Ā Output << Memo << Treeview.save << TreeView from xml file. Ā Ā // Only 64 release information checked. DCC still shows// ... PropertyGroup Ā Ā Ā DCC_DcuOutput Ā Ā Ā Ā Ā Ā .\$(Platform)\$(Config) Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā ...Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā Ā VerInfo_Locale Ā Ā Ā Ā Ā Ā 1033 Ā Ā Ā VerInfo_Keys Ā Ā Ā Ā Ā Ā CompanyName=;// DCC still outputs regardless of switch // ... PropertyGroup Ā Ā Ā AppDPIAwarenessMode Ā Ā Ā Ā Ā Ā PerMonitorV2 Ā Ā Ā VerInfo_MajorVer Ā Ā Ā Ā Ā Ā 2\ Ā Ā Ā VerInfo_Keys Ā Ā Ā Ā Ā Ā CompanyName=Pat set memo to word wrap;// Ā Ā Ā Ā Ā Ā ... Ā Ā Ā VerInfo_IncludeVerInfo Ā Ā Ā Ā Ā Ā true Ā Share this post Link to post
Uwe Raabe 2129 Posted August 3, 2023 8 hours ago, Attila Kovacs said: inherinting the settings from above. Unfortunately, changing any version information values at least once will break inheritance and the values in that buildĀ configuration have their own life. There is no built-in way to establish inheritance - unless the entries are removed from the dproj with some exterenal tool. Ā That is the reason why Project Magician has thisĀ optionĀ Quote Clear Settings in Child Configurations Sometimes the inheritance of settings implemented the project files is not wanted and leads to a lot of work or unexpected results. For instance having different version info values for each build configuration is rarely required. Changes made to one configuration are not visible in others. In addition inheritance doesn't work well with these either. Changes in the base configuration have no effect if values in depending configurations exist. Ā This functionality removes all child settings reverting back to the base settings. Only the base settings are used and changes to depending settings are ignored! Ā Version Info All version info settings in child configurations are removed and the base settings put in charge again. The only exception are the Module attributes, allowing different attributes per build configuration. For pure Windows projects the settings in the base configuration will be kept, while for mixed OS projects the settings in the platform base configuration will serve as a basis. Ā Application Settings All application settings in child configurations are removed and the base settings put in charge again. This effects the Icons, Manifest File, Output Settings and Appearance. Application settings are always platform based and thus the settings in the platform base configuration are the ones to be kept. Ā Package Settings All package settings in child configurations are removed and the base settings put in charge again. This effects the Prefix, Suffix and Version as well as the Description and Never Build option. Ā 1 1 Share this post Link to post
Attila Kovacs 648 Posted August 3, 2023 16 minutes ago, Uwe Raabe said: That is the reason why Project Magician has thisĀ optionĀ Quote Great, but this should be working in the IDE. Before I report this misimplementation, I wanted to know if it's still the same in the current IDE. Ā Share this post Link to post
timfrost 81 Posted August 3, 2023 In my experience the bugs in the project settings hierarchy have varied from version to version, but never gone away entirely. Share this post Link to post
Uwe Raabe 2129 Posted August 3, 2023 10 hours ago, Attila Kovacs said: Before I report this misimplementation I guess you already did:Ā https://quality.embarcadero.com/browse/RSP-33469 Share this post Link to post
stijnsanders 38 Posted August 3, 2023 What I typically do to get it right, is open the dproj in a text editor, and remove all of the `<Ver`* elements that are not inside of the <PropertyGroup Condition="'$(Base)'!=''">` element, then only change the version info in the IDE with 'Target' set to 'All Configurations' Share this post Link to post
mvanrijnen 124 Posted August 4, 2023 Yes, i always have to set the version multiple times also in the IDE,Ā Would be nice if there was an apply to child configs (All->Win32->Release/Debug) etc. Or better a checkbox with a Single Version option, which then makes sure the version is applied to all configs.Ā Ā Share this post Link to post
Uwe Raabe 2129 Posted August 4, 2023 Project Magician follows a different scheme: It has an option to remove all child entries so that only the base values are effective. Unfortunately it doesn't force you to change base values onlyĀ nor does it warn if you don't. 1 Share this post Link to post
dummzeuch 1612 Posted August 4, 2023 Since the version info stuff never really worked very well since at least Delphi 2005, I don't use the IDE to manage the version info but create a version infoĀ resource externally and link it to the executable. As as side effect, I have no more annoying changes in the dproj file that show up in SCM with every build. 2 Share this post Link to post
Attila Kovacs 648 Posted August 4, 2023 15 minutes ago, dummzeuch said: Since the version info stuff never really worked very well since at least Delphi 2005, I don't use the IDE to manage the version info but create a version infoĀ resource externally and link it to the executable. As as side effect, I have no more annoying changes in the dproj file that show up in SCM with every build. I also need it in the IDE because I store essential information in it. Perhaps it's not the best practice, but that's how it currently is. Uwe's solution to remove child entries seems to be the best option, as it usually is when he comes up with something. However, this issue should also be addressed in the IDE itself. At the very least, they should consider hiring that expert and incorporating their solution into the IDE. Share this post Link to post
Tom Chamberlain 48 Posted August 4, 2023 We use a set of shared resource files,Ā one for the EXE's and another for the DLL's (the filetype changes) and leave the IDE out of it.Ā We have our own mass build process for production (the only time we care about theĀ version numbers and things) with the option to update the version number,Ā it changes and rebuilds the resource files before starting any compiles so we always have the correct versions for production. Share this post Link to post
Uwe Raabe 2129 Posted August 4, 2023 21 minutes ago, dummzeuch said: create a version infoĀ resource externally and link it to the executable That is actually what my build server (resp. FinalBuilder) does here. That is onlyĀ one reason, why I avoid creating any exe on my development system and send it to a customer. Ā Just now, Attila Kovacs said: However, this issue should also be addressed in the IDE itself. At the very least, they should consider hiring that expert and incorporating their solution into the IDE. I would love to see a reliable solution in the IDE itself. For compatibility reasons I suggest to add a special entry to the configuration combo which handles the storage in the base configuration and clear all child configurations. Ā One has to remember that the version info dialog for Win32/Win64 only projects differs from those targeting other platforms, too. The former can handle that in the base configuration, while the latter has to do it in the platform bases. The reason is that different platforms follow different rules. Share this post Link to post
Attila Kovacs 648 Posted August 4, 2023 I also have a build server where I generate the resource from a template, but I still need it in the IDE. Just saying. š Share this post Link to post
dummzeuch 1612 Posted August 4, 2023 54 minutes ago, Attila Kovacs said: I also have a build server where I generate the resource from a template, but I still need it in the IDE. Just saying. š I haven't got a build server, but use theĀ post build eventĀ in the IDE (and in command line builds) instead. Share this post Link to post
mvanrijnen 124 Posted August 4, 2023 1 hour ago, dummzeuch said: Since the version info stuff never really worked very well since at least Delphi 2005, I don't use the IDE to manage the version info but create a version infoĀ resource externally and link it to the executable. As as side effect, I have no more annoying changes in the dproj file that show up in SCM with every build. quick howto?Ā Ā Share this post Link to post
dummzeuch 1612 Posted August 4, 2023 (edited) 20 minutes ago, mvanrijnen said: quick howto?Ā https://blog.dummzeuch.de/2015/09/26/using-my-buildtools/ Ā Actually, it's even older: Ā http://www.dummzeuch.de/delphi/dzprepbuild/englisch.html Edited August 4, 2023 by dummzeuch 1 Share this post Link to post
Vincent Parrett 830 Posted August 5, 2023 Of course I am biased, but everyone should have a build serverĀ š Ā FinalBuilder makes setting version info trivialĀ https://www.finalbuilder.com/resources/blogs/managing-delphi-version-info-with-finalbuilder Ā 1 Share this post Link to post
mvanrijnen 124 Posted August 7, 2023 On 8/5/2023 at 4:17 AM, Vincent Parrett said: Of course I am biased, but everyone should have a build serverĀ š Ā FinalBuilder makes setting version info trivialĀ https://www.finalbuilder.com/resources/blogs/managing-delphi-version-info-with-finalbuilder Ā yes, we are working on that also. Ā 1 Share this post Link to post
Terry Peterson 0 Posted February 22, 2024 On 8/3/2023 at 1:48 AM, Uwe Raabe said: Unfortunately, changing any version information values at least once will break inheritance and the values in that buildĀ configuration have their own life. There is no built-in way to establish inheritance - unless the entries are removed from the dproj with some exterenal tool. Ā That is the reason why Project Magician has thisĀ optionĀ Ā Thanks, Ewe!Ā I've just stumbled upon your long-standing solution to the problem that has vexed me through several generations of Delphi. Share this post Link to post