aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Decompile
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Decompile')
-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: