aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/HttpExtensionFactory.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-01-20 11:09:10 -0600
committerSean Hall <r.sean.hall@gmail.com>2019-01-20 11:15:09 -0600
commit87527d58d18fa719dc7a5ce512369485d907cba4 (patch)
tree9bcfd603f11b73846fd1985c2b732920b209fcaf /src/wixext/HttpExtensionFactory.cs
parent4d30ab70573f9734d7fd3cd4d54c02173fa281db (diff)
downloadwix-87527d58d18fa719dc7a5ce512369485d907cba4.tar.gz
wix-87527d58d18fa719dc7a5ce512369485d907cba4.tar.bz2
wix-87527d58d18fa719dc7a5ce512369485d907cba4.zip
Integrate into latest v4.
Diffstat (limited to 'src/wixext/HttpExtensionFactory.cs')
-rw-r--r--src/wixext/HttpExtensionFactory.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wixext/HttpExtensionFactory.cs b/src/wixext/HttpExtensionFactory.cs
new file mode 100644
index 00000000..fa23dac6
--- /dev/null
+++ b/src/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 IEnumerable<Type> ExtensionTypes => new[]
12 {
13 typeof(HttpCompiler),
14 typeof(HttpExtensionData),
15 typeof(HttpWindowsInstallerBackendBinderExtension),
16 };
17 }
18}