| 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 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
| 6 | |
| 7 | <InstallExecuteSequence> |
| 8 | <ValidateProductID Suppress="yes" /> |
| 9 | </InstallExecuteSequence> |
| 10 | |
| 11 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
| 12 | <ComponentGroupRef Id="ProductComponents" /> |
| 13 | <ComponentGroupRef Id="Foo1" /> |
| 14 | <ComponentGroupRef Id="Foo2" /> |
| 15 | </Feature> |
| 16 | |
| 17 | <!--<CustomActionRef Id="SetFoo" />--> |
| 18 | |
| 19 | </Package> |
| 20 | |
| 21 | <Fragment Id="SetFoo"> |
| 22 | <CustomAction Id="SetFoo" Property="FOO" Value="BOB" /> |
| 23 | <CustomAction Id="SetBar" Property="BAR" Value="BOB" /> |
| 24 | </Fragment> |
| 25 | |
| 26 | <Fragment Id="Foo1"> |
| 27 | <ComponentGroup Id="Foo1" /> |
| 28 | |
| 29 | <InstallExecuteSequence> |
| 30 | <Custom Action="SetFoo" Before="SetBar" /> |
| 31 | <Custom Action="SetBar" Overridable="yes" Before="AppSearch" /> |
| 32 | </InstallExecuteSequence> |
| 33 | </Fragment> |
| 34 | |
| 35 | <Fragment Id="Foo2"> |
| 36 | <ComponentGroup Id="Foo2" /> |
| 37 | |
| 38 | <InstallExecuteSequence> |
| 39 | <Custom Action="override SetBar" Before="AppSearch" /> |
| 40 | </InstallExecuteSequence> |
| 41 | </Fragment> |
| 42 | |
| 43 | <Fragment Id="Directories"> |
| 44 | <StandardDirectory Id="ProgramFilesFolder"> |
| 45 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 46 | </StandardDirectory> |
| 47 | </Fragment> |
| 48 | </Wix> |