main
wxs 24 lines 1007 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" Compressed="no" InstallerVersion="200" Scope="perMachine">
3
4
5 <Upgrade Id="01120000-00E0-0000-0000-0000000FF1CE">
6 <UpgradeVersion ExcludeLanguages="no" IgnoreRemoveFailure="yes" IncludeMaximum="no" IncludeMinimum="yes" Maximum="13.0.0" Minimum="12.0.0" OnlyDetect="no" Property="BLAHBLAHBLAH" />
7 </Upgrade>
8 <!--<Property Id="BLAHBLAHBLAH" Secure="yes" />-->
9
10 <InstallExecuteSequence>
11 <RemoveExistingProducts After="InstallValidate" />
12 </InstallExecuteSequence>
13
14 <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
15 <ComponentGroupRef Id="ProductComponents" />
16 </Feature>
17 </Package>
18
19 <Fragment>
20 <StandardDirectory Id="ProgramFilesFolder">
21 <Directory Id="INSTALLFOLDER" Name="MsiPackage" />
22 </StandardDirectory>
23 </Fragment>
24 </Wix>