diff options
Diffstat (limited to 'src/test/burn/ForTestingUseOnlyExtension/ForTestingUseOnlyExtensionData.cs')
| -rw-r--r-- | src/test/burn/ForTestingUseOnlyExtension/ForTestingUseOnlyExtensionData.cs | 16 |
1 files changed, 16 insertions, 0 deletions
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 @@ | |||
| 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 | } | ||
