aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs')
-rw-r--r--src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
index 2c8231f8..dea1f47d 100644
--- a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
+++ b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
@@ -340,15 +340,6 @@ namespace WixToolset.Core.Burn
340 command.Execute(); 340 command.Execute();
341 } 341 }
342 342
343 // If catalog files exist, non-embedded payloads should validate with the catalogs.
344 var catalogs = section.Symbols.OfType<WixBundleCatalogSymbol>().ToList();
345
346 if (catalogs.Count > 0)
347 {
348 var command = new VerifyPayloadsWithCatalogCommand(this.Messaging, catalogs, payloadSymbols.Values);
349 command.Execute();
350 }
351
352 if (this.Messaging.EncounteredError) 343 if (this.Messaging.EncounteredError)
353 { 344 {
354 return; 345 return;
@@ -456,7 +447,7 @@ namespace WixToolset.Core.Burn
456 { 447 {
457 var executableName = Path.GetFileName(this.OutputPath); 448 var executableName = Path.GetFileName(this.OutputPath);
458 449
459 var command = new CreateBurnManifestCommand(this.Messaging, this.BackendExtensions, executableName, section, bundleSymbol, containers, chainSymbol, orderedFacades, boundaries, uxPayloads, payloadSymbols, orderedSearches, catalogs, this.IntermediateFolder); 450 var command = new CreateBurnManifestCommand(this.Messaging, this.BackendExtensions, executableName, section, bundleSymbol, containers, chainSymbol, orderedFacades, boundaries, uxPayloads, payloadSymbols, orderedSearches, this.IntermediateFolder);
460 command.Execute(); 451 command.Execute();
461 452
462 manifestPath = command.OutputPath; 453 manifestPath = command.OutputPath;