diff options
author | Rob Mensching <rob@firegiant.com> | 2021-05-03 17:00:34 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-05-03 17:00:34 -0700 |
commit | 592c6e2f7407c291a7bf9ef4c8ce50da9798cc68 (patch) | |
tree | af42d0518b91cdc31590884006a2624bf7cdf4ed /src/ext/UI/wixext/UIExtensionFactory.cs | |
parent | 0e7fa93306858a9adde5b64ede920492632ba9e6 (diff) | |
download | wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.tar.gz wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.tar.bz2 wix-592c6e2f7407c291a7bf9ef4c8ce50da9798cc68.zip |
Move UI.wixext into ext
Diffstat (limited to 'src/ext/UI/wixext/UIExtensionFactory.cs')
-rw-r--r-- | src/ext/UI/wixext/UIExtensionFactory.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ext/UI/wixext/UIExtensionFactory.cs b/src/ext/UI/wixext/UIExtensionFactory.cs new file mode 100644 index 00000000..141aa39f --- /dev/null +++ b/src/ext/UI/wixext/UIExtensionFactory.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.UI | ||
4 | { | ||
5 | using System; | ||
6 | using System.Collections.Generic; | ||
7 | using WixToolset.Extensibility; | ||
8 | |||
9 | public class UIExtensionFactory : BaseExtensionFactory | ||
10 | { | ||
11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] | ||
12 | { | ||
13 | typeof(UIExtensionData), | ||
14 | }; | ||
15 | } | ||
16 | } | ||