aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/CopyFile/CopyFile.wxs
blob: 6620880640e81833142e9aecc01cc71c7a13254f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
    <Fragment>
        <ComponentGroup Id="ProductComponents">
            <Component Id="CopyFileComp" Directory="INSTALLFOLDER">
                <File Id="test.txt" Source="test.txt" />
                <CopyFile Id="MoveText" Delete="yes" SourceName="*.txt" DestinationDirectory="OtherFolder"/>
            </Component>
        </ComponentGroup>
    </Fragment>

    <Fragment>
        <Directory Id="OtherFolder" Name="INSTALLFOLDER:\other" />
    </Fragment>
</Wix>