aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFile/PackageComponents.wxs
blob: b8e9f59c200cb7aa3b90661fa47a7474e9c34a63 (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 Source="test.txt" />
            </Component>
            <Component Id="Shared.dll" Shared="yes">
                <File Name="Shared.dll" Source="test.txt" />
            </Component>
        </ComponentGroup>
    </Fragment>
</Wix>