aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-26 13:40:49 -0700
committerRob Mensching <rob@firegiant.com>2019-10-26 13:56:11 -0700
commit6eab6255f832007886c4b01861dc39d5582177ef (patch)
treecb3e11ad38046ed74eede94126c9923e4dfc287b /src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs
parentf01d284101e95d490497062c2dc9065423d0cf37 (diff)
downloadwix-6eab6255f832007886c4b01861dc39d5582177ef.tar.gz
wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.bz2
wix-6eab6255f832007886c4b01861dc39d5582177ef.zip
Update to WindowsInstallerData rename from Data
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs
index a2cf2076..1651f9d8 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/CopyTransformDataCommand.cs
@@ -22,7 +22,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
22 22
23 public IMessaging Messaging { private get; set; } 23 public IMessaging Messaging { private get; set; }
24 24
25 public Output Output { private get; set; } 25 public WindowsInstallerData Output { private get; set; }
26 26
27 public TableDefinitionCollection TableDefinitions { private get; set; } 27 public TableDefinitionCollection TableDefinitions { private get; set; }
28 28
@@ -431,7 +431,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
431 /// <param name="mainTransform">The primary authoring transform.</param> 431 /// <param name="mainTransform">The primary authoring transform.</param>
432 /// <param name="pairedTransform">The secondary patch transform.</param> 432 /// <param name="pairedTransform">The secondary patch transform.</param>
433 /// <param name="mainFileRow">The file row that contains information about the patched file.</param> 433 /// <param name="mainFileRow">The file row that contains information about the patched file.</param>
434 private void AddPatchFilesActionToSequenceTable(SequenceTable table, Output mainTransform, Output pairedTransform, Row mainFileRow) 434 private void AddPatchFilesActionToSequenceTable(SequenceTable table, WindowsInstallerData mainTransform, WindowsInstallerData pairedTransform, Row mainFileRow)
435 { 435 {
436 // Find/add PatchFiles action (also determine sequence for it). 436 // Find/add PatchFiles action (also determine sequence for it).
437 // Search mainTransform first, then pairedTransform (pairedTransform overrides). 437 // Search mainTransform first, then pairedTransform (pairedTransform overrides).
@@ -524,7 +524,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
524 /// Signal a warning if a non-keypath file was changed in a patch without also changing the keypath file of the component. 524 /// Signal a warning if a non-keypath file was changed in a patch without also changing the keypath file of the component.
525 /// </summary> 525 /// </summary>
526 /// <param name="output">The output to validate.</param> 526 /// <param name="output">The output to validate.</param>
527 private void ValidateFileRowChanges(Output transform) 527 private void ValidateFileRowChanges(WindowsInstallerData transform)
528 { 528 {
529 Table componentTable = transform.Tables["Component"]; 529 Table componentTable = transform.Tables["Component"];
530 Table fileTable = transform.Tables["File"]; 530 Table fileTable = transform.Tables["File"];