From a451caf6d60e3f7fcbd56b87ca3c0f393e8f7b52 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 18 Mar 2021 02:12:04 -0700 Subject: Track database copy for validation as temporary --- src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs') 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 // Validate the output if there are CUBe files and we're not explicitly suppressing validation. if (this.CubeFiles != null && !this.SuppressValidation) { - var command = new ValidateDatabaseCommand(this.Messaging, this.IntermediateFolder, data, this.OutputPath, this.CubeFiles, this.Ices, this.SuppressedIces); + var command = new ValidateDatabaseCommand(this.Messaging, this.WindowsInstallerBackendHelper, this.IntermediateFolder, data, this.OutputPath, this.CubeFiles, this.Ices, this.SuppressedIces); command.Execute(); + + trackedFiles.AddRange(command.TrackedFiles); } if (this.Messaging.EncounteredError) -- cgit v1.2.3-55-g6feb