aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-18 02:12:04 -0700
committerRob Mensching <rob@firegiant.com>2021-03-18 02:15:51 -0700
commita451caf6d60e3f7fcbd56b87ca3c0f393e8f7b52 (patch)
tree7080178a100de2c380af9b982d37a0c84ddc4ba5 /src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
parentfb2e8cb8a28a2a1a84909a8793a57d0d575da610 (diff)
downloadwix-a451caf6d60e3f7fcbd56b87ca3c0f393e8f7b52.tar.gz
wix-a451caf6d60e3f7fcbd56b87ca3c0f393e8f7b52.tar.bz2
wix-a451caf6d60e3f7fcbd56b87ca3c0f393e8f7b52.zip
Track database copy for validation as temporary
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
index 6503ba65..f645c85e 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
@@ -537,8 +537,10 @@ namespace WixToolset.Core.WindowsInstaller.Bind
537 // Validate the output if there are CUBe files and we're not explicitly suppressing validation. 537 // Validate the output if there are CUBe files and we're not explicitly suppressing validation.
538 if (this.CubeFiles != null && !this.SuppressValidation) 538 if (this.CubeFiles != null && !this.SuppressValidation)
539 { 539 {
540 var command = new ValidateDatabaseCommand(this.Messaging, this.IntermediateFolder, data, this.OutputPath, this.CubeFiles, this.Ices, this.SuppressedIces); 540 var command = new ValidateDatabaseCommand(this.Messaging, this.WindowsInstallerBackendHelper, this.IntermediateFolder, data, this.OutputPath, this.CubeFiles, this.Ices, this.SuppressedIces);
541 command.Execute(); 541 command.Execute();
542
543 trackedFiles.AddRange(command.TrackedFiles);
542 } 544 }
543 545
544 if (this.Messaging.EncounteredError) 546 if (this.Messaging.EncounteredError)