| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 3 | <Fragment> |
| 4 | <Binary Id="Test.txt" SourceFile="!(wix.TestFile=test.txt)" /> |
| 5 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
| 6 | <Component> |
| 7 | <File Source="test.txt" /> |
| 8 | </Component> |
| 9 | <Component Id="Shared.dll" Shared="yes"> |
| 10 | <File Name="Shared.dll" Source="test.txt" /> |
| 11 | </Component> |
| 12 | </ComponentGroup> |
| 13 | </Fragment> |
| 14 | </Wix> |