aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Http/wixext/HttpExtensionFactory.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-05-11 08:02:58 -0700
committerRob Mensching <rob@firegiant.com>2021-05-11 08:02:58 -0700
commite835776f17056097559c13f25b4c875c7361bd5b (patch)
tree8b1c3af05e44e55cf61318474d90dcb53a2e3bb6 /src/ext/Http/wixext/HttpExtensionFactory.cs
parent52868c16c483776d0c55ab7f2a0828a0ee55c39d (diff)
parent4194343c39fa66778a8de9804c88789bd41dae48 (diff)
downloadwix-e835776f17056097559c13f25b4c875c7361bd5b.tar.gz
wix-e835776f17056097559c13f25b4c875c7361bd5b.tar.bz2
wix-e835776f17056097559c13f25b4c875c7361bd5b.zip
Merge Http.wixext
Diffstat (limited to 'src/ext/Http/wixext/HttpExtensionFactory.cs')
-rw-r--r--src/ext/Http/wixext/HttpExtensionFactory.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ext/Http/wixext/HttpExtensionFactory.cs b/src/ext/Http/wixext/HttpExtensionFactory.cs
new file mode 100644
index 00000000..ad7d84d0
--- /dev/null
+++ b/src/ext/Http/wixext/HttpExtensionFactory.cs
@@ -0,0 +1,18 @@
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
3namespace WixToolset.Http
4{
5 using System;
6 using System.Collections.Generic;
7 using WixToolset.Extensibility;
8
9 public class HttpExtensionFactory : BaseExtensionFactory
10 {
11 protected override IReadOnlyCollection<Type> ExtensionTypes => new[]
12 {
13 typeof(HttpCompiler),
14 typeof(HttpExtensionData),
15 typeof(HttpWindowsInstallerBackendBinderExtension),
16 };
17 }
18}