main
wxs 26 lines 1.02 KB
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="yes" InstallerVersion="200">
3 <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
4
5 <Property Id="MyProperty" Value="1" />
6 <Property Id="ReInStAlLmOdE" Value="Mixed-case Property Id causes ICE46" />
7
8 <Launch Condition="Myproperty" Message="Invalid cased Property Id below causes ICE46" />
9
10 <CustomAction Id="CausesICE12Error" Directory="INSTALLFOLDER" Value="Test" />
11
12 <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
13 <ComponentGroupRef Id="ProductComponents" />
14 </Feature>
15
16 <InstallExecuteSequence>
17 <Custom Action="CausesICE12Error" Before="AppSearch" />
18 </InstallExecuteSequence>
19 </Package>
20
21 <Fragment>
22 <StandardDirectory Id="ProgramFiles6432Folder">
23 <Directory Id="INSTALLFOLDER" Name="MsiPackage" />
24 </StandardDirectory>
25 </Fragment>
26 </Wix>