[BACK]Return to asir.wxs CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows

Diff for /OpenXM_contrib2/windows/asir.wxs between version 1.3 and 1.4

version 1.3, 2013/11/16 16:47:02 version 1.4, 2013/12/02 14:44:23
Line 75 
Line 75 
         <Property Id="WIXUI_INSTALLDIR" Value="ASIR" />          <Property Id="WIXUI_INSTALLDIR" Value="ASIR" />
         <WixVariable Id="WixUILicenseRtf" Value="LICENSE.rtf" />          <WixVariable Id="WixUILicenseRtf" Value="LICENSE.rtf" />
         <Icon Id="asirgui.exe" SourceFile="asir\bin\asirgui.exe" />          <Icon Id="asirgui.exe" SourceFile="asir\bin\asirgui.exe" />
           <Upgrade Id="$(var.upgradeID)">
               <UpgradeVersion Property="PREVIOUSFOUND" OnlyDetect="no" Minimum="1.0.0" IncludeMinimum="yes" Maximum="$(var.productVer)" IncludeMaximum="no" />
               <UpgradeVersion Property="NEWERFOUND" IncludeMinimum="no" Minimum="$(var.productVer)" OnlyDetect="yes" />
           </Upgrade>
           <CustomAction Error="Newer version is already installed." Id="PreventDowngrading" />
           <InstallExecuteSequence>
               <Custom Action="PreventDowngrading" After="FindRelatedProducts">NEWERFOUND</Custom>
               <RemoveExistingProducts After="InstallInitialize">PREVIOUSFOUND</RemoveExistingProducts>
           </InstallExecuteSequence>
     </Product>      </Product>
 </Wix>  </Wix>

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>