diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:53:30 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:53:30 -0500 |
commit | 7ec19f5d7cc8b5c75ac4a12969a1feae1f93545e (patch) | |
tree | aedb37b739c8d3dd8d422e08f912117fd293d018 /src | |
parent | 331f7b77f63b365ed6d74e18780292c2d7f6563a (diff) | |
download | wix-7ec19f5d7cc8b5c75ac4a12969a1feae1f93545e.tar.gz wix-7ec19f5d7cc8b5c75ac4a12969a1feae1f93545e.tar.bz2 wix-7ec19f5d7cc8b5c75ac4a12969a1feae1f93545e.zip |
Use IReadOnlyCollection.
Diffstat (limited to 'src')
-rw-r--r-- | src/wixext/UtilExtensionFactory.cs | 4 | ||||
-rw-r--r-- | src/wixext/UtilWindowsInstallerBackendExtension.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/wixext/UtilExtensionFactory.cs b/src/wixext/UtilExtensionFactory.cs index 0f87a1ff..08352813 100644 --- a/src/wixext/UtilExtensionFactory.cs +++ b/src/wixext/UtilExtensionFactory.cs | |||
@@ -1,4 +1,4 @@ | |||
1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
2 | 2 | ||
3 | namespace WixToolset.Util | 3 | namespace WixToolset.Util |
4 | { | 4 | { |
@@ -8,7 +8,7 @@ namespace WixToolset.Util | |||
8 | 8 | ||
9 | public class UtilExtensionFactory : BaseExtensionFactory | 9 | public class UtilExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(UtilCompiler), | 13 | typeof(UtilCompiler), |
14 | typeof(UtilExtensionData), | 14 | typeof(UtilExtensionData), |
diff --git a/src/wixext/UtilWindowsInstallerBackendExtension.cs b/src/wixext/UtilWindowsInstallerBackendExtension.cs index f872ec1a..bca7c700 100644 --- a/src/wixext/UtilWindowsInstallerBackendExtension.cs +++ b/src/wixext/UtilWindowsInstallerBackendExtension.cs | |||
@@ -8,6 +8,6 @@ namespace WixToolset.Util | |||
8 | 8 | ||
9 | public class UtilWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension | 9 | public class UtilWindowsInstallerBackendBinderExtension : BaseWindowsInstallerBackendBinderExtension |
10 | { | 10 | { |
11 | public override IEnumerable<TableDefinition> TableDefinitions => UtilTableDefinitions.All; | 11 | public override IReadOnlyCollection<TableDefinition> TableDefinitions => UtilTableDefinitions.All; |
12 | } | 12 | } |
13 | } | 13 | } |