diff options
-rw-r--r-- | global.json | 2 | ||||
-rw-r--r-- | src/wixext/IisExtensionFactory.cs | 2 | ||||
-rw-r--r-- | src/wixext/IisWindowsInstallerBackendBinderExtension.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/IisExtensionFactory.cs b/src/wixext/IisExtensionFactory.cs index 038379f8..2fb7e682 100644 --- a/src/wixext/IisExtensionFactory.cs +++ b/src/wixext/IisExtensionFactory.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.Iis | |||
8 | 8 | ||
9 | public class IisExtensionFactory : BaseExtensionFactory | 9 | public class IisExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(IIsCompiler), | 13 | typeof(IIsCompiler), |
14 | typeof(IIsExtensionData), | 14 | typeof(IIsExtensionData), |
diff --git a/src/wixext/IisWindowsInstallerBackendBinderExtension.cs b/src/wixext/IisWindowsInstallerBackendBinderExtension.cs index 29d34a09..a61cbad6 100644 --- a/src/wixext/IisWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/IisWindowsInstallerBackendBinderExtension.cs | |||
@@ -8,6 +8,6 @@ namespace WixToolset.Iis | |||
8 | 8 | ||
9 | public class IisWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension | 9 | public class IisWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension |
10 | { | 10 | { |
11 | public override IEnumerable<TableDefinition> TableDefinitions => IisTableDefinitions.All; | 11 | public override IReadOnlyCollection<TableDefinition> TableDefinitions => IisTableDefinitions.All; |
12 | } | 12 | } |
13 | } | 13 | } |