aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/MultiFileCompressed/PackageComponents.wxs
blob: 1a040fa3fee9b8731227d15141c0964b3e10c0a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  <Fragment>
    <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
      <Component>
        <File DiskId="1" Source="$(env.WINDIR)\Notepad.exe" />
      </Component>
      <Component>
        <File DiskId="2" Source="test.txt" />
      </Component>
    </ComponentGroup>
  </Fragment>
</Wix>