blob: 90d66cc3c5479105c2b7f1b2e8287d6c87ace0ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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>
<DirectoryRef Id="INSTALLFOLDER">
<Directory Id="OtherFolder" Name="other" />
</DirectoryRef>
</Fragment>
</Wix>
|