diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-07-08 13:09:59 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-07-08 15:18:09 -0700 |
| commit | 220bea1948c19132d0e5277021b967993293c5a3 (patch) | |
| tree | 514a812106a756b086471434e0a043080d80d593 /src/test/WixToolsetTest.CoreIntegration/TestData | |
| parent | b8bd03960b79e92d38ee7094a88e246253dad800 (diff) | |
| download | wix-220bea1948c19132d0e5277021b967993293c5a3.tar.gz wix-220bea1948c19132d0e5277021b967993293c5a3.tar.bz2 wix-220bea1948c19132d0e5277021b967993293c5a3.zip | |
Tests for CopyFile element
Validates wixtoolset/issues#5867
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/CopyFile/CopyFile.wxs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CopyFile/CopyFile.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CopyFile/CopyFile.wxs new file mode 100644 index 00000000..66208806 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CopyFile/CopyFile.wxs | |||
| @@ -0,0 +1,15 @@ | |||
| 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 | <Directory Id="OtherFolder" Name="INSTALLFOLDER:\other" /> | ||
| 14 | </Fragment> | ||
| 15 | </Wix> | ||
