Soji 1 Posted February 8, 2021 Hi, I am looking for an easy option to set "version information" of multiple projects with in a project group at the same time. Is there any option already available wit the Delphi IDE? Going through each and every project and updating the version information for a particular build configuration is error prone and cumbersome. I have almost 75 projects in a project group. Don't want to click through each and every project and enter the version information for every release. Any best practices or suggestions to handle this situation? I use configuration manager to select a configuration to build all the projects in my development machine. (For release build I use a build server and MSBUILD) Kind regards, Soji. Share this post Link to post
Anders Melander 1782 Posted February 8, 2021 Don't use the IDE managed version resource. Use an external RC file with a version resource instead and update it with whatever suits your build pipeline best. For example a simple bat or cmd file. I'm sure there are lots of homegrown utilities that can update the version in the dproj, an RC or RES file but I like to keep the number of dependencies down. A utility would just be yet another piece of software to install, maintain, etc. 2 1 Share this post Link to post
Lars Fosdal 1792 Posted February 8, 2021 We use Continua CI + FinalBuilder to manage versions. 1 Share this post Link to post
Guest Posted February 8, 2021 (edited) Here, a sample for my project named "MyProject2.exe", looking at "MyProject2.DPROJ" we can find the "FileVersion" values: Here, myseft definition by mannual entry!!! not using "auto" increment - for test! ... <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''"> <---- my DEBUG mode for 32bits definition <DCC_RemoteDebug>false</DCC_RemoteDebug> <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode> <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> <VerInfo_MajorVer>20</VerInfo_MajorVer> <VerInfo_MinorVer>21</VerInfo_MinorVer> <VerInfo_Release>22</VerInfo_Release> <VerInfo_Build>23</VerInfo_Build> <VerInfo_Locale>1033</VerInfo_Locale> <VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=20.21.22.23;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> </PropertyGroup> ... Then, you can create yourself a tool to "find / change" it... if dont get wrong, you can use "reFIND" tool by Embarcadero and config it to find this text and change! Or, you can use "FIND and REPLACE" in your IDE to find in all files in your projects (*.DPROJ files ) and change the value ok, YOU HAVE 75 PROJECT IN YOUR GROUP! Dont worry! just limit your search for your "*.DPROJ" files! FIND: (last number version) REPLACE: (new number version) You see? hug Edited February 9, 2021 by Guest Share this post Link to post
Rob Truby 4 Posted February 8, 2021 Depending on your Delphi version you can use DDevExtensions. Unfortunately it's not available for 10.4. 1 Share this post Link to post
Lajos Juhász 293 Posted February 8, 2021 32 minutes ago, Rob Truby said: Depending on your Delphi version you can use DDevExtensions. Unfortunately it's not available for 10.4. You mean 1 1 Share this post Link to post
Uwe Raabe 2057 Posted February 8, 2021 50 minutes ago, Rob Truby said: Unfortunately it's not available for 10.4. Actually it is: https://github.com/DelphiPraxis/DDevExtensions/releases/tag/v2.87 1 1 Share this post Link to post
Fr0sT.Brutal 900 Posted February 9, 2021 +1 for manual handling of RC resource. RAD's embedded one sucks anyway. 1 1 Share this post Link to post
Soji 1 Posted February 9, 2021 15 hours ago, Anders Melander said: Don't use the IDE managed version resource. Use an external RC file with a version resource instead and update it with whatever suits your build pipeline best. For example a simple bat or cmd file. I'm sure there are lots of homegrown utilities that can update the version in the dproj, an RC or RES file but I like to keep the number of dependencies down. A utility would just be yet another piece of software to install, maintain, etc. Thanks @Anders Melander. I was also not looking for any utilities. Try to find a best solution within IDE/projects itself. Share this post Link to post
Soji 1 Posted February 9, 2021 13 hours ago, emailx45 said: Then, you can create yourself a tool to "find / change" it... Thanks @emailx45. I started exactly with same idea sometime back. Then I found some issue when we upgraded Delphi version. The *.dproj file changed and my search and replace failed or did not work with different build configurations. I created a tool to search and replace build version at that time. Thanks for your detailed answer. Much appreciated. Share this post Link to post