How to automatically set Version Info in Delphi? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:55:22Zhttp://stackoverflow.com/feeds/question/290792http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/290792/how-to-automatically-set-version-info-in-delphi4How to automatically set Version Info in Delphi?D-Ven2008-11-14T17:31:02Z2008-11-15T09:52:39Z
<p>I would like to have my CodeGear Delphi 2007 project to automatically set the debug module attributes depending on whether my project is in debug or release mode.</p>
<p>I can manually set this value by right clicking on the project->Version Info->Edit values as needed. These are for the project as a whole and are the same for the debug and release builds. </p>
<p>Is there a way to automatically set the manifest to Debug if the #debug compiler directive is present?</p>
<p>Is there another way to easily detect is an exe was build as a debug or release version?</p>
http://stackoverflow.com/questions/290792/how-to-automatically-set-version-info-in-delphi/290846#2908461Answer by lkessler for How to automatically set Version Info in Delphi?lkessler2008-11-14T17:47:28Z2008-11-14T17:53:23Z<p>There is a Delphi wiki writeup about exactly this question:</p>
<p><a href="http://delphi.wikia.com/wiki/Easily_Switching_between_%22Debug%22_and_%22Release%22_Builds" rel="nofollow">Easily Switching between "Debug" and "Release" Builds</a></p>
http://stackoverflow.com/questions/290792/how-to-automatically-set-version-info-in-delphi/290991#2909912Answer by Lars Truijens for How to automatically set Version Info in Delphi?Lars Truijens2008-11-14T18:46:28Z2008-11-14T18:46:28Z<p>You could if you do it the other way around if you use the commandline compiler. Tell the compiler to compile for debug or release. Set a compiler directive to DEBUG for the debug build (it does that by default).</p>
<p>msbuild YourProject.dproj /p:Configuration=Release</p>
<p>msbuild YourProject.dproj /p:Configuration=Debug</p>
http://stackoverflow.com/questions/290792/how-to-automatically-set-version-info-in-delphi/292358#2923580Answer by Lars Truijens for How to automatically set Version Info in Delphi?Lars Truijens2008-11-15T09:52:39Z2008-11-15T09:52:39Z<p>Another solution would be to use a resource editor post build to change it. Like <a href="http://www.heaventools.com/rtconsole-update-version-info.htm" rel="nofollow">http://www.heaventools.com/rtconsole-update-version-info.htm</a></p>