| 1 | <?define Foo = "Foo" ?> |
| 2 | <?define Foo = "Foo" ?> |
| 3 | |
| 4 | <?define Bar = "Bar" ?> |
| 5 | <?define Bar = "Baz" ?> |
| 6 | |
| 7 | <?ifdef $(sys.WIXVERSION) ?> |
| 8 | <?if $(sys.WIXMAJORVERSION) >= 4 AND $(sys.WIXMAJORVERSION) < 5 ?> |
| 9 | <?warning WiX v4 is in effect! ?> |
| 10 | <?endif?> |
| 11 | <?endif?> |
| 12 | |
| 13 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 14 | <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"> |
| 15 | |
| 16 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
| 17 | |
| 18 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
| 19 | <ComponentGroupRef Id="ProductComponents" /> |
| 20 | </Feature> |
| 21 | </Package> |
| 22 | |
| 23 | <Fragment> |
| 24 | <Directory Id="override TARGETDIR" Name="SourceDir"> |
| 25 | <Directory Id="ProgramFilesFolder"> |
| 26 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 27 | </Directory> |
| 28 | </Directory> |
| 29 | </Fragment> |
| 30 | </Wix> |