diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-20 12:58:51 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-20 13:05:44 -0700 |
commit | 432bbb45902b36869b9821d9c07f200a58878c89 (patch) | |
tree | a1de2454e5158e195c2d0bcb354b5e935a7e4414 /src | |
parent | 4a28f74917af1725cf0ac06e68759806818c59e4 (diff) | |
download | wix-432bbb45902b36869b9821d9c07f200a58878c89.tar.gz wix-432bbb45902b36869b9821d9c07f200a58878c89.tar.bz2 wix-432bbb45902b36869b9821d9c07f200a58878c89.zip |
Integrate latest tooling
Diffstat (limited to 'src')
-rw-r--r-- | src/wixext/HttpExtensionFactory.cs | 2 | ||||
-rw-r--r-- | src/wixext/HttpWindowsInstallerBackendBinderExtension.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/HttpExtensionFactory.cs b/src/wixext/HttpExtensionFactory.cs index fa23dac6..ad7d84d0 100644 --- a/src/wixext/HttpExtensionFactory.cs +++ b/src/wixext/HttpExtensionFactory.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.Http | |||
8 | 8 | ||
9 | public class HttpExtensionFactory : BaseExtensionFactory | 9 | public class HttpExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(HttpCompiler), | 13 | typeof(HttpCompiler), |
14 | typeof(HttpExtensionData), | 14 | typeof(HttpExtensionData), |
diff --git a/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs b/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs index 7a94257b..8e4f1a96 100644 --- a/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/HttpWindowsInstallerBackendBinderExtension.cs | |||
@@ -8,6 +8,6 @@ namespace WixToolset.Http | |||
8 | 8 | ||
9 | public class HttpWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension | 9 | public class HttpWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension |
10 | { | 10 | { |
11 | public override IEnumerable<TableDefinition> TableDefinitions => HttpTableDefinitions.All; | 11 | public override IReadOnlyCollection<TableDefinition> TableDefinitions => HttpTableDefinitions.All; |
12 | } | 12 | } |
13 | } | 13 | } |