diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2019-02-02 14:07:55 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2019-02-02 14:17:41 -0600 |
commit | 73e6559b809f5f5ae2041d22ec81479df0fe91f9 (patch) | |
tree | b2da1bf50403fbc9fc933f681c34662959edb628 /src/wixext/DirectXExtensionFactory.cs | |
parent | c7bed5a084324ba94aae5108bac94374ce9dfe39 (diff) | |
download | wix-73e6559b809f5f5ae2041d22ec81479df0fe91f9.tar.gz wix-73e6559b809f5f5ae2041d22ec81479df0fe91f9.tar.bz2 wix-73e6559b809f5f5ae2041d22ec81479df0fe91f9.zip |
Integrate into latest v4.
Diffstat (limited to 'src/wixext/DirectXExtensionFactory.cs')
-rw-r--r-- | src/wixext/DirectXExtensionFactory.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/wixext/DirectXExtensionFactory.cs b/src/wixext/DirectXExtensionFactory.cs new file mode 100644 index 00000000..b3755ee9 --- /dev/null +++ b/src/wixext/DirectXExtensionFactory.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 WixToolset.DirectX | ||
4 | { | ||
5 | using System; | ||
6 | using System.Collections.Generic; | ||
7 | using WixToolset.Extensibility; | ||
8 | |||
9 | public class DirectXExtensionFactory : BaseExtensionFactory | ||
10 | { | ||
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | ||
12 | { | ||
13 | typeof(DirectXExtensionData), | ||
14 | }; | ||
15 | } | ||
16 | } | ||