diff options
-rw-r--r-- | global.json | 2 | ||||
-rw-r--r-- | src/wixext/HttpExtensionFactory.cs | 2 | ||||
-rw-r--r-- | src/wixext/HttpWindowsInstallerBackendBinderExtension.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/global.json b/global.json index fc26eb6e..23dd3fa6 100644 --- a/global.json +++ b/global.json | |||
@@ -1,5 +1,5 @@ | |||
1 | { | 1 | { |
2 | "msbuild-sdks": { | 2 | "msbuild-sdks": { |
3 | "WixToolset.Sdk": "4.0.0-build-0206" | 3 | "WixToolset.Sdk": "4.0.0-build-0211" |
4 | } | 4 | } |
5 | } | 5 | } |
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 | } |