diff options
Diffstat (limited to 'src/WixToolset.Core/Mutator.cs')
-rw-r--r-- | src/WixToolset.Core/Mutator.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/Mutator.cs b/src/WixToolset.Core/Mutator.cs index f935b570..7f1af13a 100644 --- a/src/WixToolset.Core/Mutator.cs +++ b/src/WixToolset.Core/Mutator.cs | |||
@@ -71,7 +71,7 @@ namespace WixToolset.Core | |||
71 | } | 71 | } |
72 | finally | 72 | finally |
73 | { | 73 | { |
74 | encounteredError = this.Core.EncounteredError; | 74 | encounteredError = this.Core.Messaging.EncounteredError; |
75 | } | 75 | } |
76 | 76 | ||
77 | // return the Wix document element only if mutation completed successfully | 77 | // return the Wix document element only if mutation completed successfully |
@@ -98,7 +98,7 @@ namespace WixToolset.Core | |||
98 | 98 | ||
99 | wixString = mutatorExtension.Mutate(wixString); | 99 | wixString = mutatorExtension.Mutate(wixString); |
100 | 100 | ||
101 | if (String.IsNullOrEmpty(wixString) || this.Core.EncounteredError) | 101 | if (String.IsNullOrEmpty(wixString) || this.Core.Messaging.EncounteredError) |
102 | { | 102 | { |
103 | break; | 103 | break; |
104 | } | 104 | } |
@@ -106,7 +106,7 @@ namespace WixToolset.Core | |||
106 | } | 106 | } |
107 | finally | 107 | finally |
108 | { | 108 | { |
109 | encounteredError = this.Core.EncounteredError; | 109 | encounteredError = this.Core.Messaging.EncounteredError; |
110 | } | 110 | } |
111 | 111 | ||
112 | return encounteredError ? null : wixString; | 112 | return encounteredError ? null : wixString; |