aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SameFileFolders/TestComponents.wxs
blob: 765e6778c2b7c3efb13d103cf29f1dd07e5e39ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  <Fragment>
    <ComponentGroup Id="ProductComponents">
      <Component  Directory="INSTALLFOLDER:\a">
        <File Source="a\test.txt" />
      </Component>
      <Component  Directory="INSTALLFOLDER:\b">
        <File Source="b\test.txt" />
      </Component>
      <Component  Directory="INSTALLFOLDER:\c">
        <File Source="c\test.txt" />
      </Component>
    </ComponentGroup>
  </Fragment>
</Wix>