aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.ComPlus/TestData/UsingComPlusPartition/PackageComponents.wxs
blob: f61eedd64b979d6ef50ef594e60df62bed01f372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
     xmlns:complus="http://wixtoolset.org/schemas/v4/wxs/complus">
  <Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
        <Component>
            <File Source="example.txt" />
            <complus:ComPlusPartition Id="MyPartition" Name="MyPartition" PartitionId="MyPartitionId" />
        </Component>
    </ComponentGroup>
  </Fragment>
</Wix>