Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <Product Id="*" Name="Tacho.Setup" Language="1033" Version="1.0.0.0" Manufacturer="Lofasz" UpgradeCode="aea931ae-d19a-48d8-a73b-cb4e56a60779">
- <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
- <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
- <MediaTemplate />
- <Feature Id="ProductFeature" Title="Tacho.Setup" Level="1">
- <ComponentGroupRef Id="ProductComponents" />
- </Feature>
- <UIRef Id="WixUI_InstallDir" />
- <Property Id="WIXUI_INSTALLDIR" Value="INETPUB" />
- </Product>
- <Fragment>
- <Directory Id="TARGETDIR" Name="SourceDir">
- <Directory Id="INETPUB" Name="Inetpub">
- <Directory Id="INSTALLFOLDER" Name="Tacho.Setup" />
- </Directory>
- </Directory>
- </Fragment>
- <Fragment>
- <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
- <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->
- <!-- <Component Id="ProductComponent"> -->
- <!-- TODO: Insert files, registry keys, and other resources here. -->
- <!-- </Component> -->
- </ComponentGroup>
- </Fragment>
- </Wix>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement