aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs
index c54e9c53..93ac50ff 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateDeltaPatchesCommand.cs
@@ -8,14 +8,14 @@ namespace WixToolset.Core.WindowsInstaller.Bind
8 using System.IO; 8 using System.IO;
9 using WixToolset.Core.Bind; 9 using WixToolset.Core.Bind;
10 using WixToolset.Data; 10 using WixToolset.Data;
11 using WixToolset.Data.Tuples; 11 using WixToolset.Data.Symbols;
12 12
13 /// <summary> 13 /// <summary>
14 /// Creates delta patches and updates the appropriate rows to point to the newly generated patches. 14 /// Creates delta patches and updates the appropriate rows to point to the newly generated patches.
15 /// </summary> 15 /// </summary>
16 internal class CreateDeltaPatchesCommand 16 internal class CreateDeltaPatchesCommand
17 { 17 {
18 public CreateDeltaPatchesCommand(List<FileFacade> fileFacades, string intermediateFolder, WixPatchIdTuple wixPatchId) 18 public CreateDeltaPatchesCommand(List<FileFacade> fileFacades, string intermediateFolder, WixPatchIdSymbol wixPatchId)
19 { 19 {
20 this.FileFacades = fileFacades; 20 this.FileFacades = fileFacades;
21 this.IntermediateFolder = intermediateFolder; 21 this.IntermediateFolder = intermediateFolder;
@@ -24,7 +24,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
24 24
25 private IEnumerable<FileFacade> FileFacades { get; } 25 private IEnumerable<FileFacade> FileFacades { get; }
26 26
27 private WixPatchIdTuple WixPatchId { get; } 27 private WixPatchIdSymbol WixPatchId { get; }
28 28
29 private string IntermediateFolder { get; } 29 private string IntermediateFolder { get; }
30 30
@@ -73,7 +73,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
73 } 73 }
74 } 74 }
75 } 75 }
76#endif 76#endif
77 77
78 throw new NotImplementedException(); 78 throw new NotImplementedException();
79 } 79 }