aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-04-19 23:59:41 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-04-19 23:59:41 -0500
commit4d56d41e82a8b118415421ce334636779cc20b18 (patch)
tree8aa78c7f8ad348421259cb1dc2ce887dc1a407d2
parente0769330595d6eafbc263e7db13235a508d0781a (diff)
downloadwix-4d56d41e82a8b118415421ce334636779cc20b18.tar.gz
wix-4d56d41e82a8b118415421ce334636779cc20b18.tar.bz2
wix-4d56d41e82a8b118415421ce334636779cc20b18.zip
Use IReadOnlyCollection.
-rw-r--r--global.json2
-rw-r--r--src/wixext/DependencyExtensionFactory.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/global.json b/global.json
index 83ab5c51..616b0b8c 100644
--- a/global.json
+++ b/global.json
@@ -1,5 +1,5 @@
1{ 1{
2 "msbuild-sdks": { 2 "msbuild-sdks": {
3 "WixToolset.Sdk": "4.0.0-build-0209" 3 "WixToolset.Sdk": "4.0.0-build-0210"
4 } 4 }
5} 5}
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),