aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-20 13:05:26 -0700
committerRob Mensching <rob@firegiant.com>2021-04-20 13:17:54 -0700
commitc5c87377d99beefe83a3470aab326d12bdf0f8a4 (patch)
treea7fdfe7e82b6b4d680541a96e8e29e6f053b6f87 /src/wixext
parent3e8b7eb4cb739be1881c621999616bc5bbbb0bdb (diff)
downloadwix-c5c87377d99beefe83a3470aab326d12bdf0f8a4.tar.gz
wix-c5c87377d99beefe83a3470aab326d12bdf0f8a4.tar.bz2
wix-c5c87377d99beefe83a3470aab326d12bdf0f8a4.zip
Integrate latest tooling
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/IisExtensionFactory.cs2
-rw-r--r--src/wixext/IisWindowsInstallerBackendBinderExtension.cs2
2 files changed, 2 insertions, 2 deletions
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}