ProductVersion not set correctly in D2007 build

I'm using FB7.0.0.2183 in W7 Ultimate. Using the D2007 Build Delphi Win32 action, in the Version Info tab both 'Include version info in the project' and 'Use property set for version info' are checked. ProductVersion in the property set is set to 6.13 and FileVersionString is set to 6.1.3.0. However, after compilation, the Product Version is always set to 6.1.3.0 - not 6.13.

Looking at the Version Info tab stuff, I see 'Link ProductVersion to FileVersion' is checked although it is grayed out. If I uncheck 'Use property set for version info' and uncheck that linking setting and then re-check 'Use property set for version info' and then re-compile, ProductVersion is still set to 6.1.3.0 and 'Link ProductVersion to FileVersion' is again checked (and grayed out). It seems that whatever settings I use, ProductVersion is always linked to FileVersion. This was ok in V6 which I used until recently.

Regards...Andrew

Make sure you propertyset is defined as “Win32 Version Info”, then add a “Propertyset Assign Values” action, Check the LinkProductVersion property and set the value to false.

Setting the LinkProductVersion to False in the PropertySet Assign properties dialog fixed the problem.

Thanks...Andrew