| 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
| 2 | |
| 3 | |
| 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:fw="http://wixtoolset.org/schemas/v4/wxs/firewall"> |
| 5 | <Fragment> |
| 6 | <ComponentGroup Id="ProductComponents"> |
| 7 | <ComponentRef Id="FirewallComponent1"/> |
| 8 | </ComponentGroup> |
| 9 | </Fragment> |
| 10 | |
| 11 | <Fragment> |
| 12 | <Component Id="FirewallComponent1" Guid="08044660-CB5D-4891-8BD5-0CB5BB668D78" Directory="INSTALLFOLDER"> |
| 13 | <File Source="$(sys.SOURCEFILEPATH)" KeyPath="yes" > |
| 14 | <fw:FirewallException Id="FirewallException28" |
| 15 | Description="WiX Toolset firewall exception rule integration test - three interfaces" |
| 16 | Name="WiXToolset500 Test - 0028" Scope="any" > |
| 17 | <fw:Interface Name="[INTERFACE1]" /> |
| 18 | <fw:Interface Name="[INTERFACE2]" /> |
| 19 | <fw:Interface Name="[INTERFACE3]" /> |
| 20 | <fw:InterfaceType Value="remoteAccess" /> |
| 21 | <fw:InterfaceType Value="lan" /> |
| 22 | <fw:InterfaceType Value="wireless" /> |
| 23 | </fw:FirewallException> |
| 24 | </File> |
| 25 | |
| 26 | <fw:FirewallException Id="FirewallException29" |
| 27 | Description="WiX Toolset firewall exception rule integration test - one interface" |
| 28 | Name="WiXToolset500 Test - 0029" Scope="any" Port="29292" Interface="[INTERFACE1]" InterfaceType="[INTERFACETYPE]" > |
| 29 | </fw:FirewallException> |
| 30 | </Component> |
| 31 | </Fragment> |
| 32 | </Wix> |