aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/Win32Assembly.wxs
blob: 45cc711455f9bc0f036ae7ba1dbc397a9f4f4673 (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">
            <Component Directory="INSTALLFOLDER">
                <File Id="test.txt" Source="test.txt" Assembly="win32" AssemblyManifest="test.dll.manifest" />
            </Component>
            <Component Id="test.dll.manifest" Directory="INSTALLFOLDER">
                <File Id="test.dll.manifest" Source="test.manifest" Name="test.dll.manifest"></File>
            </Component>
        </ComponentGroup>
    </Fragment>
</Wix>