diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Differ.cs')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Differ.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Differ.cs b/src/WixToolset.Core.WindowsInstaller/Differ.cs index 7cc204f9..c7fe8960 100644 --- a/src/WixToolset.Core.WindowsInstaller/Differ.cs +++ b/src/WixToolset.Core.WindowsInstaller/Differ.cs | |||
@@ -6,12 +6,12 @@ namespace WixToolset.Core.WindowsInstaller | |||
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.WindowsInstaller.Msi; | ||
9 | using WixToolset.Data; | 10 | using WixToolset.Data; |
10 | using WixToolset.Data.WindowsInstaller; | 11 | using WixToolset.Data.WindowsInstaller; |
11 | using WixToolset.Data.WindowsInstaller.Rows; | 12 | using WixToolset.Data.WindowsInstaller.Rows; |
12 | using WixToolset.Extensibility; | 13 | using WixToolset.Extensibility; |
13 | using WixToolset.Extensibility.Services; | 14 | using WixToolset.Extensibility.Services; |
14 | using WixToolset.Msi; | ||
15 | 15 | ||
16 | /// <summary> | 16 | /// <summary> |
17 | /// Creates a transform by diffing two outputs. | 17 | /// Creates a transform by diffing two outputs. |
@@ -82,7 +82,7 @@ namespace WixToolset.Core.WindowsInstaller | |||
82 | /// <returns>The transform.</returns> | 82 | /// <returns>The transform.</returns> |
83 | public Output Diff(Output targetOutput, Output updatedOutput) | 83 | public Output Diff(Output targetOutput, Output updatedOutput) |
84 | { | 84 | { |
85 | return Diff(targetOutput, updatedOutput, 0); | 85 | return this.Diff(targetOutput, updatedOutput, 0); |
86 | } | 86 | } |
87 | 87 | ||
88 | /// <summary> | 88 | /// <summary> |