aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Http/wixext/HttpWindowsInstallerBackendBinderExtension.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-05-04 22:47:19 -0700
committerRob Mensching <rob@firegiant.com>2021-05-04 22:47:19 -0700
commit4194343c39fa66778a8de9804c88789bd41dae48 (patch)
tree23f750291ef5e43272f05fadbf8f2d9530d027d2 /src/ext/Http/wixext/HttpWindowsInstallerBackendBinderExtension.cs
parent432bbb45902b36869b9821d9c07f200a58878c89 (diff)
downloadwix-4194343c39fa66778a8de9804c88789bd41dae48.tar.gz
wix-4194343c39fa66778a8de9804c88789bd41dae48.tar.bz2
wix-4194343c39fa66778a8de9804c88789bd41dae48.zip
Move Http.wixext into ext
Diffstat (limited to 'src/ext/Http/wixext/HttpWindowsInstallerBackendBinderExtension.cs')
-rw-r--r--src/ext/Http/wixext/HttpWindowsInstallerBackendBinderExtension.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ext/Http/wixext/HttpWindowsInstallerBackendBinderExtension.cs b/src/ext/Http/wixext/HttpWindowsInstallerBackendBinderExtension.cs
new file mode 100644
index 00000000..8e4f1a96
--- /dev/null
+++ b/src/ext/Http/wixext/HttpWindowsInstallerBackendBinderExtension.cs
@@ -0,0 +1,13 @@
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.Collections.Generic;
6 using WixToolset.Data.WindowsInstaller;
7 using WixToolset.Extensibility;
8
9 public class HttpWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension
10 {
11 public override IReadOnlyCollection<TableDefinition> TableDefinitions => HttpTableDefinitions.All;
12 }
13}