Advertisement
vilmosnagy

Untitled

Jun 23rd, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.27 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  3.     <Product Id="*" Name="Tacho.Setup" Language="1033" Version="1.0.0.0" Manufacturer="Lofasz" UpgradeCode="aea931ae-d19a-48d8-a73b-cb4e56a60779">
  4.         <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
  5.  
  6.         <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
  7.         <MediaTemplate />
  8.  
  9.         <Feature Id="ProductFeature" Title="Tacho.Setup" Level="1">
  10.             <ComponentGroupRef Id="ProductComponents" />
  11.         </Feature>
  12.     <UIRef Id="WixUI_InstallDir" />
  13.     <Property Id="WIXUI_INSTALLDIR" Value="INETPUB" />
  14.     </Product>
  15.  
  16.     <Fragment>
  17.         <Directory Id="TARGETDIR" Name="SourceDir">
  18.       <Directory Id="INETPUB" Name="Inetpub">
  19.                 <Directory Id="INSTALLFOLDER" Name="Tacho.Setup" />
  20.             </Directory>
  21.         </Directory>
  22.     </Fragment>
  23.  
  24.     <Fragment>
  25.         <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
  26.             <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
  27.             <!-- <Component Id="ProductComponent"> -->
  28.                 <!-- TODO: Insert files, registry keys, and other resources here. -->
  29.             <!-- </Component> -->
  30.         </ComponentGroup>
  31.     </Fragment>
  32. </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement