blob: 8084706ef57e30faf15f48bff376f9ce8395f670 (
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"
xmlns:fw="http://wixtoolset.org/schemas/v4/wxs/firewall">
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component>
<File Source="example.txt" />
<fw:FirewallException Description="An example outbound firewall" Name="example" Port="42" Outbound="yes">
<fw:RemoteAddress Value="*" />
</fw:FirewallException>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
|