| 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 | <Property Id="REMOVEPROP"> |
| 10 | <RegistrySearch Id="GetInstallFolderForNukingPurposes" Root="HKLM" Key="SOFTWARE\[Manufacturer]\[ProductName]" Name="InstallFolder" Type="directory" /> |
| 11 | </Property> |
| 12 | </Package> |
| 13 | |
| 14 | <Fragment> |
| 15 | <StandardDirectory Id="ProgramFilesFolder"> |
| 16 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 17 | </StandardDirectory> |
| 18 | </Fragment> |
| 19 | </Wix> |