aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wixext/ComPlusExtensionFactory.cs2
-rw-r--r--src/wixext/ComPlusWindowsInstallerBackendBinderExtension.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/ComPlusExtensionFactory.cs b/src/wixext/ComPlusExtensionFactory.cs
index d9405867..76b51bff 100644
--- a/src/wixext/ComPlusExtensionFactory.cs
+++ b/src/wixext/ComPlusExtensionFactory.cs
@@ -8,7 +8,7 @@ namespace WixToolset.ComPlus
8 8
9 public class ComPlusExtensionFactory : BaseExtensionFactory 9 public class ComPlusExtensionFactory : BaseExtensionFactory
10 { 10 {
11 protected override IEnumerable<Type> ExtensionTypes => new[] 11 protected override IReadOnlyCollection<Type> ExtensionTypes => new[]
12 { 12 {
13 typeof(ComPlusCompiler), 13 typeof(ComPlusCompiler),
14 typeof(ComPlusExtensionData), 14 typeof(ComPlusExtensionData),
diff --git a/src/wixext/ComPlusWindowsInstallerBackendBinderExtension.cs b/src/wixext/ComPlusWindowsInstallerBackendBinderExtension.cs
index 6083c22b..cf226a3d 100644
--- a/src/wixext/ComPlusWindowsInstallerBackendBinderExtension.cs
+++ b/src/wixext/ComPlusWindowsInstallerBackendBinderExtension.cs
@@ -8,6 +8,6 @@ namespace WixToolset.ComPlus
8 8
9 public class ComPlusWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension 9 public class ComPlusWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension
10 { 10 {
11 public override IEnumerable<TableDefinition> TableDefinitions => ComPlusTableDefinitions.All; 11 public override IReadOnlyCollection<TableDefinition> TableDefinitions => ComPlusTableDefinitions.All;
12 } 12 }
13} 13}