main
cs 16 lines 643 Bytes
Raw
1 // 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.
2
3 namespace ForTestingUseOnly
4 {
5 using WixToolset.Data;
6 using WixToolset.Extensibility;
7
8 public sealed class ForTestingUseOnlyExtensionData : BaseExtensionData
9 {
10 public override bool TryGetSymbolDefinitionByName(string name, out IntermediateSymbolDefinition symbolDefinition)
11 {
12 symbolDefinition = ForTestingUseOnlySymbolDefinitions.ByName(name);
13 return symbolDefinition != null;
14 }
15 }
16 }