aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/FirewallErrors.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/FirewallErrors.cs')
-rw-r--r--src/wixext/FirewallErrors.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wixext/FirewallErrors.cs b/src/wixext/FirewallErrors.cs
index 3fff8c8d..b2dac782 100644
--- a/src/wixext/FirewallErrors.cs
+++ b/src/wixext/FirewallErrors.cs
@@ -12,11 +12,6 @@ namespace WixToolset.Firewall
12 return Message(sourceLineNumbers, Ids.IllegalRemoteAddressWithScopeAttribute, "The RemoteAddress element cannot be specified because its parent FirewallException already specified the Scope attribute. To use RemoteAddress elements, omit the Scope attribute."); 12 return Message(sourceLineNumbers, Ids.IllegalRemoteAddressWithScopeAttribute, "The RemoteAddress element cannot be specified because its parent FirewallException already specified the Scope attribute. To use RemoteAddress elements, omit the Scope attribute.");
13 } 13 }
14 14
15 public static Message IllegalEmptyRemoteAddress(SourceLineNumber sourceLineNumbers)
16 {
17 return Message(sourceLineNumbers, Ids.IllegalEmptyRemoteAddress, "The RemoteAddress element's inner text cannot be an empty string or completely whitespace.");
18 }
19
20 public static Message NoExceptionSpecified(SourceLineNumber sourceLineNumbers) 15 public static Message NoExceptionSpecified(SourceLineNumber sourceLineNumbers)
21 { 16 {
22 return Message(sourceLineNumbers, Ids.NoExceptionSpecified, "The FirewallException element doesn't identify the target of the firewall exception. To create an application exception, nest the FirewallException element under a File element or provide a value for the File or Program attributes. To create a port exception, provide a value for the Port attribute."); 17 return Message(sourceLineNumbers, Ids.NoExceptionSpecified, "The FirewallException element doesn't identify the target of the firewall exception. To create an application exception, nest the FirewallException element under a File element or provide a value for the File or Program attributes. To create a port exception, provide a value for the Port attribute.");
@@ -35,7 +30,6 @@ namespace WixToolset.Firewall
35 public enum Ids 30 public enum Ids
36 { 31 {
37 IllegalRemoteAddressWithScopeAttribute = 6401, 32 IllegalRemoteAddressWithScopeAttribute = 6401,
38 IllegalEmptyRemoteAddress = 6402,
39 NoExceptionSpecified = 6403, 33 NoExceptionSpecified = 6403,
40 } 34 }
41 } 35 }