aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller')
-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 5b401a0c..c9659287 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
@@ -232,8 +232,10 @@ namespace WixToolset.Core.WindowsInstaller.Bind
232 232
233 // Extract files that come from binary .wixlibs and WixExtensions (this does not extract files from merge modules). 233 // Extract files that come from binary .wixlibs and WixExtensions (this does not extract files from merge modules).
234 { 234 {
235 var command = new ExtractEmbeddedFilesCommand(this.ExpectedEmbeddedFiles); 235 var command = new ExtractEmbeddedFilesCommand(this.BackendHelper, this.ExpectedEmbeddedFiles);
236 command.Execute(); 236 command.Execute();
237
238 trackedFiles.AddRange(command.TrackedFiles);
237 } 239 }
238 240
239 // This must occur after all variables and source paths have been resolved. 241 // This must occur after all variables and source paths have been resolved.