| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 3 | <Fragment> |
| 4 | <ComponentGroup Id="ProductComponents"> |
| 5 | <Component Id="CopyFileComp" Directory="INSTALLFOLDER"> |
| 6 | <File Id="test.txt" Source="test.txt" /> |
| 7 | <CopyFile Id="MoveText" Delete="yes" SourceName="*.txt" DestinationDirectory="OtherFolder"/> |
| 8 | </Component> |
| 9 | </ComponentGroup> |
| 10 | </Fragment> |
| 11 | |
| 12 | <Fragment> |
| 13 | <DirectoryRef Id="INSTALLFOLDER"> |
| 14 | <Directory Id="OtherFolder" Name="other" /> |
| 15 | </DirectoryRef> |
| 16 | </Fragment> |
| 17 | </Wix> |