From d529525a1e331f3ef9ec2707791c99bd78fdd82f Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 30 May 2020 14:53:05 -0700 Subject: Basic patching support --- src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs') diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs index 0cbb81d8..ffc4e84d 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs @@ -499,7 +499,8 @@ namespace WixToolset.Core.WindowsInstaller.Bind row.FileSize = tuple.FileSize; row.Version = tuple.Version; row.Language = tuple.Language; - row.DiskId = tuple.DiskId ?? 1; // TODO: is 0 the correct thing to default here + row.DiskId = tuple.DiskId ?? 1; // TODO: is 1 the correct thing to default here + row.Sequence = tuple.Sequence; row.Source = tuple.Source.Path; var attributes = (tuple.Attributes & FileTupleAttributes.Checksum) == FileTupleAttributes.Checksum ? WindowsInstallerConstants.MsidbFileAttributesChecksum : 0; -- cgit v1.2.3-55-g6feb