diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-19 12:25:40 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-19 12:25:40 -0800 |
commit | 155a6e96346e0cb3d9ab6f5372fa29b46ebaee89 (patch) | |
tree | 59d1f151bfde8068b6014b05b5c8cfea3402c974 /src/WixToolset.Core/Mutator.cs | |
parent | 6f1665ed759b31bd095f186f9239232c653597cd (diff) | |
download | wix-155a6e96346e0cb3d9ab6f5372fa29b46ebaee89.tar.gz wix-155a6e96346e0cb3d9ab6f5372fa29b46ebaee89.tar.bz2 wix-155a6e96346e0cb3d9ab6f5372fa29b46ebaee89.zip |
Integrate simplified message handling
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; |