blob: 2a75e3d710b53f0e6d36d10f18ddcf0864e6dc76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?foreach ComponentPlatform in x86;x64;arm ?>
<Fragment>
<ComponentGroup Id="ProductComponents.$(var.ComponentPlatform)" Directory="INSTALLFOLDER">
<Component>
<File Name="$(var.ComponentPlatform).dll" Source="test.txt" />
</Component>
</ComponentGroup>
</Fragment>
<?endforeach?>
</Wix>
|