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