diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:59:41 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-19 23:59:41 -0500 |
commit | 4d56d41e82a8b118415421ce334636779cc20b18 (patch) | |
tree | 8aa78c7f8ad348421259cb1dc2ce887dc1a407d2 /src | |
parent | e0769330595d6eafbc263e7db13235a508d0781a (diff) | |
download | wix-4d56d41e82a8b118415421ce334636779cc20b18.tar.gz wix-4d56d41e82a8b118415421ce334636779cc20b18.tar.bz2 wix-4d56d41e82a8b118415421ce334636779cc20b18.zip |
Use IReadOnlyCollection.
Diffstat (limited to 'src')
-rw-r--r-- | src/wixext/DependencyExtensionFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wixext/DependencyExtensionFactory.cs b/src/wixext/DependencyExtensionFactory.cs index 354f9234..413f99ae 100644 --- a/src/wixext/DependencyExtensionFactory.cs +++ b/src/wixext/DependencyExtensionFactory.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.Dependency | |||
8 | 8 | ||
9 | public class DependencyExtensionFactory : BaseExtensionFactory | 9 | public class DependencyExtensionFactory : BaseExtensionFactory |
10 | { | 10 | { |
11 | protected override IEnumerable<Type> ExtensionTypes => new[] | 11 | protected override IReadOnlyCollection<Type> ExtensionTypes => new[] |
12 | { | 12 | { |
13 | typeof(DependencyCompiler), | 13 | typeof(DependencyCompiler), |
14 | typeof(DependencyExtensionData), | 14 | typeof(DependencyExtensionData), |