diff options
Diffstat (limited to 'src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs')
-rw-r--r-- | src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs index da655469..9f98483f 100644 --- a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs +++ b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | |||
@@ -122,14 +122,11 @@ namespace WixToolset.Core.Burn | |||
122 | // of this in the 4.0 timeframe. | 122 | // of this in the 4.0 timeframe. |
123 | var orderedSearches = this.OrderSearches(section); | 123 | var orderedSearches = this.OrderSearches(section); |
124 | 124 | ||
125 | #if THIS_SHOULD_BE_DELETED_SINCE_RESOLVE_DOES_THIS_NOW | 125 | // Extract files that come from binary .wixlibs and WixExtensions (this does not extract files from merge modules). |
126 | // Extract files that come from cabinet files (this does not extract files from merge modules). | ||
127 | { | 126 | { |
128 | var extractEmbeddedFilesCommand = new ExtractEmbeddedFilesCommand(); | 127 | var command = new ExtractEmbeddedFilesCommand(this.ExpectedEmbeddedFiles); |
129 | extractEmbeddedFilesCommand.FilesWithEmbeddedFiles = ExpectedEmbeddedFiles; | 128 | command.Execute(); |
130 | extractEmbeddedFilesCommand.Execute(); | ||
131 | } | 129 | } |
132 | #endif | ||
133 | 130 | ||
134 | // Get the explicit payloads. | 131 | // Get the explicit payloads. |
135 | var payloadTuples = section.Tuples.OfType<WixBundlePayloadTuple>().ToDictionary(t => t.Id.Id); | 132 | var payloadTuples = section.Tuples.OfType<WixBundlePayloadTuple>().ToDictionary(t => t.Id.Id); |