main
wxs 23 lines 1.18 KB
Raw
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="A2E492E7-7350-4F77-8424-1FE94553D776" Directory="INSTALLFOLDER">
13 <File Source="$(sys.SOURCEFILEPATH)" KeyPath="yes" >
14 <fw:FirewallException Id="FirewallException1"
15 Description="WiX Toolset firewall exception rule integration test - minimal app properties"
16 Name="WiXToolset401 Test - 0001" Scope="any" />
17 </File>
18 <fw:FirewallException Id="FirewallException2"
19 Description="WiX Toolset firewall exception rule integration test - minimal port properties"
20 Name="WiXToolset401 Test - 0002" Scope="any" Port="23456"/>
21 </Component>
22 </Fragment>
23 </Wix>