aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/UsingProvides/Package.wxs
blob: 07da1215531c9ea70f7e62ece78e3ec6802ff834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  <Package Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">

    <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />

    <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)">
      <ComponentGroupRef Id="ProductComponents" />
    </Feature>
  </Package>

  <Fragment>
    <Directory Id="INSTALLFOLDER" Name="ProgramFilesFolder:\MsiPackage" />
  </Fragment>
</Wix>