main
cs 18 lines 692 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 WixToolset.DirectX
4 {
5 using WixToolset.Data;
6 using WixToolset.Extensibility;
7
8 /// <summary>
9 /// The WiX Toolset DirectX Extension.
10 /// </summary>
11 public sealed class DirectXExtensionData : BaseExtensionData
12 {
13 public override Intermediate GetLibrary(ISymbolDefinitionCreator symbolDefinitions)
14 {
15 return Intermediate.Load(typeof(DirectXExtensionData).Assembly, "WixToolset.DirectX.directx.wixlib", symbolDefinitions);
16 }
17 }
18 }