aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-06 21:09:19 -0400
committerBob Arnson <bob@firegiant.com>2020-09-06 21:13:01 -0400
commit3f05c650723ecd0a8fe7ab151c67db6c13cb5d75 (patch)
tree0e53fd0b2aac76716fc1a3407c6b0d40c95693eb /src/WixToolset.Core.WindowsInstaller
parentcb6bd363baef3a7d458dfda053b94131420822f0 (diff)
downloadwix-3f05c650723ecd0a8fe7ab151c67db6c13cb5d75.tar.gz
wix-3f05c650723ecd0a8fe7ab151c67db6c13cb5d75.tar.bz2
wix-3f05c650723ecd0a8fe7ab151c67db6c13cb5d75.zip
Replace BinaryKey with BinaryRef and FileKey with FileRef.
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
index 591ff5ef..e471d924 100644
--- a/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Decompile/Decompiler.cs
@@ -3997,12 +3997,12 @@ namespace WixToolset.Core.WindowsInstaller
3997 switch (source) 3997 switch (source)
3998 { 3998 {
3999 case WindowsInstallerConstants.MsidbCustomActionTypeBinaryData: 3999 case WindowsInstallerConstants.MsidbCustomActionTypeBinaryData:
4000 xCustomAction.SetAttributeValue("BinaryKey", row.FieldAsString(2)); 4000 xCustomAction.SetAttributeValue("BinaryRef", row.FieldAsString(2));
4001 break; 4001 break;
4002 case WindowsInstallerConstants.MsidbCustomActionTypeSourceFile: 4002 case WindowsInstallerConstants.MsidbCustomActionTypeSourceFile:
4003 if (!row.IsColumnNull(2)) 4003 if (!row.IsColumnNull(2))
4004 { 4004 {
4005 xCustomAction.SetAttributeValue("FileKey", row.FieldAsString(2)); 4005 xCustomAction.SetAttributeValue("FileRef", row.FieldAsString(2));
4006 } 4006 }
4007 break; 4007 break;
4008 case WindowsInstallerConstants.MsidbCustomActionTypeDirectory: 4008 case WindowsInstallerConstants.MsidbCustomActionTypeDirectory: