| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> |
| 2 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> |
| 3 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
| 4 | |
| 5 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
| 6 | <ComponentGroupRef Id="ProductComponents" /> |
| 7 | </Feature> |
| 8 | |
| 9 | <util:CloseApplication Id="CloseMyApp" CloseMessage="yes" Property="MYAPPISRUNNING" Target="explorer.exe" /> |
| 10 | |
| 11 | <InstallExecuteSequence> |
| 12 | <Custom Action="override Wix4CloseApplications_$(sys.BUILDARCHSHORT)" After="InstallInitialize" /> |
| 13 | </InstallExecuteSequence> |
| 14 | </Package> |
| 15 | |
| 16 | <Fragment> |
| 17 | <StandardDirectory Id="ProgramFilesFolder"> |
| 18 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 19 | </StandardDirectory> |
| 20 | </Fragment> |
| 21 | </Wix> |