From 0d3d54992104288e9ee0c834d0b96e8502fd2d42 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 11 Jan 2024 18:26:20 -0800 Subject: Move the BootstrapperApplication out of proc --- src/api/burn/WixToolset.Mba.Core/PackageInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/api/burn/WixToolset.Mba.Core/PackageInfo.cs') diff --git a/src/api/burn/WixToolset.Mba.Core/PackageInfo.cs b/src/api/burn/WixToolset.Mba.Core/PackageInfo.cs index c6373647..b91c52c9 100644 --- a/src/api/burn/WixToolset.Mba.Core/PackageInfo.cs +++ b/src/api/burn/WixToolset.Mba.Core/PackageInfo.cs @@ -365,19 +365,19 @@ namespace WixToolset.Mba.Core package.DisplayInternalUICondition = BootstrapperApplicationData.GetAttribute(node, "DisplayInternalUICondition"); } - nodes = root.Select("/p:BootstrapperApplicationData/p:WixMbaPrereqInformation", namespaceManager); + nodes = root.Select("/p:BootstrapperApplicationData/p:WixPrereqInformation", namespaceManager); foreach (XPathNavigator node in nodes) { string id = BootstrapperApplicationData.GetAttribute(node, "PackageId"); if (id == null) { - throw new Exception("Failed to get package identifier for WixMbaPrereqInformation."); + throw new Exception("Failed to get package identifier for WixPrereqInformation."); } if (!packagesById.TryGetValue(id, out var ipackage)) { - throw new Exception(String.Format("Failed to find package specified in WixMbaPrereqInformation: {0}", id)); + throw new Exception(String.Format("Failed to find package specified in WixPrereqInformation: {0}", id)); } var package = (PackageInfo)ipackage; -- cgit v1.2.3-55-g6feb