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.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
index 3e4806a7..77d0c9bb 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
@@ -532,12 +532,6 @@ namespace WixToolset.Core.WindowsInstaller.Bind
532 // TODO: this is not sufficient to collect all Input files (for example, it misses Binary and Icon tables). 532 // TODO: this is not sufficient to collect all Input files (for example, it misses Binary and Icon tables).
533 trackedFiles.AddRange(fileFacades.Select(f => this.BackendHelper.TrackFile(f.File.Source.Path, TrackedFileType.Input, f.File.SourceLineNumbers))); 533 trackedFiles.AddRange(fileFacades.Select(f => this.BackendHelper.TrackFile(f.File.Source.Path, TrackedFileType.Input, f.File.SourceLineNumbers)));
534 this.TrackedFiles = trackedFiles; 534 this.TrackedFiles = trackedFiles;
535
536 // TODO: Eventually this gets removed
537 var intermediate = new Intermediate(this.Intermediate.Id, new[] { section }, this.Intermediate.Localizations.ToDictionary(l => l.Culture, StringComparer.OrdinalIgnoreCase));
538 var trackIntermediate = this.BackendHelper.TrackFile(Path.Combine(this.IntermediateFolder, Path.GetFileName(Path.ChangeExtension(this.OutputPath, "wir"))), TrackedFileType.Intermediate);
539 intermediate.Save(trackIntermediate.Path);
540 trackedFiles.Add(trackIntermediate);
541 } 535 }
542 536
543 private WixOutput CreateWixout(List<ITrackedFile> trackedFiles, Intermediate intermediate, Output output) 537 private WixOutput CreateWixout(List<ITrackedFile> trackedFiles, Intermediate intermediate, Output output)