From fb3ee84c80887af210f49b9274f76966e4ccc8f5 Mon Sep 17 00:00:00 2001 From: "Painter, Christopher P" Date: Tue, 19 Dec 2023 20:28:29 -0600 Subject: [PATCH] make the fg hbt --- .../IsWiXAutomationInterface/IsWiXNamespaces.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Application/Shared/IsWiXAutomationInterface/IsWiXNamespaces.cs b/Application/Shared/IsWiXAutomationInterface/IsWiXNamespaces.cs index fbd80bb..e08fc82 100644 --- a/Application/Shared/IsWiXAutomationInterface/IsWiXNamespaces.cs +++ b/Application/Shared/IsWiXAutomationInterface/IsWiXNamespaces.cs @@ -84,6 +84,19 @@ public Dictionary PossibleNamespaces prefix = "fga"; } + // One expedient hack deserves another + if (prefix.Equals("hbt")) + { + prefix = "fg"; + } + + // and another until it's a pattern + if (prefix.Equals("hbt_msix")) + { + prefix = "msix"; + } + + _extensions.Add(prefix, targetNameSpace); } }