From c2b00d75493798d9f2452d5e5014b14afcb14889 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 5 Jan 2022 21:51:00 -0600 Subject: Always run upgrade related bundles last. #5128 --- .../ForTestingUseOnlyExtensionData.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/test/burn/ForTestingUseOnlyExtension/ForTestingUseOnlyExtensionData.cs (limited to 'src/test/burn/ForTestingUseOnlyExtension/ForTestingUseOnlyExtensionData.cs') diff --git a/src/test/burn/ForTestingUseOnlyExtension/ForTestingUseOnlyExtensionData.cs b/src/test/burn/ForTestingUseOnlyExtension/ForTestingUseOnlyExtensionData.cs new file mode 100644 index 00000000..3276b2db --- /dev/null +++ b/src/test/burn/ForTestingUseOnlyExtension/ForTestingUseOnlyExtensionData.cs @@ -0,0 +1,16 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace ForTestingUseOnly +{ + using WixToolset.Data; + using WixToolset.Extensibility; + + public sealed class ForTestingUseOnlyExtensionData : BaseExtensionData + { + public override bool TryGetSymbolDefinitionByName(string name, out IntermediateSymbolDefinition symbolDefinition) + { + symbolDefinition = ForTestingUseOnlySymbolDefinitions.ByName(name); + return symbolDefinition != null; + } + } +} -- cgit v1.2.3-55-g6feb