From 98bdcfac8bd4f699bc6865abd283f710943e77bc Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 25 Oct 2019 01:41:25 -0700 Subject: Remove explicit intermediate file provided for testing We have a real WixOutput now that officially provides all the necessary information, so use that instead. --- src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs | 6 ------ 1 file changed, 6 deletions(-) (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 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 // TODO: this is not sufficient to collect all Input files (for example, it misses Binary and Icon tables). trackedFiles.AddRange(fileFacades.Select(f => this.BackendHelper.TrackFile(f.File.Source.Path, TrackedFileType.Input, f.File.SourceLineNumbers))); this.TrackedFiles = trackedFiles; - - // TODO: Eventually this gets removed - var intermediate = new Intermediate(this.Intermediate.Id, new[] { section }, this.Intermediate.Localizations.ToDictionary(l => l.Culture, StringComparer.OrdinalIgnoreCase)); - var trackIntermediate = this.BackendHelper.TrackFile(Path.Combine(this.IntermediateFolder, Path.GetFileName(Path.ChangeExtension(this.OutputPath, "wir"))), TrackedFileType.Intermediate); - intermediate.Save(trackIntermediate.Path); - trackedFiles.Add(trackIntermediate); } private WixOutput CreateWixout(List trackedFiles, Intermediate intermediate, Output output) -- cgit v1.2.3-55-g6feb