| 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 | <Property Id="ExampleProperty" Value="$(ex.Test)" /> |
| 8 | |
| 9 | <PropertyRef Id="PropertyFromExampleWir" /> |
| 10 | |
| 11 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
| 12 | <ComponentGroupRef Id="ProductComponents" /> |
| 13 | </Feature> |
| 14 | </Package> |
| 15 | |
| 16 | <Fragment> |
| 17 | <StandardDirectory Id="ProgramFilesFolder"> |
| 18 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 19 | </StandardDirectory> |
| 20 | </Fragment> |
| 21 | </Wix> |