aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Differ.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Differ.cs (renamed from src/WixToolset.Core/Differ.cs)12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/WixToolset.Core/Differ.cs b/src/WixToolset.Core.WindowsInstaller/Differ.cs
index 71a64327..bdd06d32 100644
--- a/src/WixToolset.Core/Differ.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Differ.cs
@@ -6,6 +6,7 @@ namespace WixToolset
6 using System.Collections; 6 using System.Collections;
7 using System.Collections.Generic; 7 using System.Collections.Generic;
8 using System.Globalization; 8 using System.Globalization;
9 using WixToolset.Core;
9 using WixToolset.Data; 10 using WixToolset.Data;
10 using WixToolset.Data.Rows; 11 using WixToolset.Data.Rows;
11 using WixToolset.Extensibility; 12 using WixToolset.Extensibility;
@@ -155,17 +156,6 @@ namespace WixToolset
155 this.UpdateTransformSummaryInformationTable(summaryInfoTable, validationFlags); 156 this.UpdateTransformSummaryInformationTable(summaryInfoTable, validationFlags);
156 } 157 }
157 158
158 // inspect the transform
159 InspectorCore inspectorCore = new InspectorCore();
160 foreach (InspectorExtension inspectorExtension in this.inspectorExtensions)
161 {
162 inspectorExtension.Core = inspectorCore;
163 inspectorExtension.InspectOutput(transform);
164
165 // reset
166 inspectorExtension.Core = null;
167 }
168
169 return transform; 159 return transform;
170 } 160 }
171 161