Sha256: 216a666774724462f6fd2572bf015698a11694e5453ede085f66f3731d2b9818
Contents?: true
Size: 996 Bytes
Versions: 15
Compression:
Stored size: 996 Bytes
Contents
<?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Product Id="PRODUCT_CODE" Name="PRODUCT_NAME" Language="1033" Version="VERSION" Manufacturer="MANUFACTURER" UpgradeCode="UPGRADE_CODE"> <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> <Media Id="1" Cabinet="WixgemTest.cab" EmbedCab="yes" /> <!-- Step 1: Define the directory structure --> <Directory Id="TARGETDIR" Name="SourceDir"> <Directory Id="ProgramFilesFolder"> INSTALL_DIR </Directory> </Directory> <!-- Step 2: Add files to installer package --> <DirectoryRef Id="INSTALLFOLDER"> FILES </DirectoryRef> <!-- Step 3: Tell Wix to install the files--> <Feature Id="ProductFeature" Title="PRODUCT_NAME Installation" Level="1"> COMPONENT_REFS </Feature> </Product> </Wix>
Version data entries
15 entries across 15 versions & 1 rubygems