| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" |
| 2 | xmlns:dep="http://wixtoolset.org/schemas/v4/wxs/dependency"> |
| 3 | <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a" InstallerVersion="200"> |
| 4 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> |
| 5 | |
| 6 | <StandardDirectory Id="ProgramFilesFolder"> |
| 7 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> |
| 8 | </StandardDirectory> |
| 9 | |
| 10 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> |
| 11 | <Component Directory="INSTALLFOLDER"> |
| 12 | <File Name="example.txt" Source="Package.wxs" /> |
| 13 | <Provides Key="UsingProvides" dep:Check="yes" /> |
| 14 | <Provides> |
| 15 | <Requires ProviderKey="UsingRequires" Minimum="1.0.0-beta.9" dep:Enforce="yes" /> |
| 16 | </Provides> |
| 17 | </Component> |
| 18 | </Feature> |
| 19 | |
| 20 | </Package> |
| 21 | </Wix> |