aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wixext/MsmqExtensionFactory.cs2
-rw-r--r--src/wixext/MsmqWindowsInstallerBackendExtension.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/MsmqExtensionFactory.cs b/src/wixext/MsmqExtensionFactory.cs
index 14dd5188..de9f786d 100644
--- a/src/wixext/MsmqExtensionFactory.cs
+++ b/src/wixext/MsmqExtensionFactory.cs
@@ -8,7 +8,7 @@ namespace WixToolset.Msmq
8 8
9 public class MsmqExtensionFactory : BaseExtensionFactory 9 public class MsmqExtensionFactory : BaseExtensionFactory
10 { 10 {
11 protected override IEnumerable<Type> ExtensionTypes => new[] 11 protected override IReadOnlyCollection<Type> ExtensionTypes => new[]
12 { 12 {
13 typeof(MsmqCompiler), 13 typeof(MsmqCompiler),
14 typeof(MsmqExtensionData), 14 typeof(MsmqExtensionData),
diff --git a/src/wixext/MsmqWindowsInstallerBackendExtension.cs b/src/wixext/MsmqWindowsInstallerBackendExtension.cs
index 3f83db56..d317fb60 100644
--- a/src/wixext/MsmqWindowsInstallerBackendExtension.cs
+++ b/src/wixext/MsmqWindowsInstallerBackendExtension.cs
@@ -8,6 +8,6 @@ namespace WixToolset.Msmq
8 8
9 public class MsmqWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension 9 public class MsmqWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension
10 { 10 {
11 public override IEnumerable<TableDefinition> TableDefinitions => MsmqTableDefinitions.All; 11 public override IReadOnlyCollection<TableDefinition> TableDefinitions => MsmqTableDefinitions.All;
12 } 12 }
13} 13}