Skip to content

Commit

Permalink
Use IReadOnlyCollection.
Browse files Browse the repository at this point in the history
  • Loading branch information
rseanhall committed Apr 20, 2021
1 parent e076933 commit 4d56d41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"msbuild-sdks": {
"WixToolset.Sdk": "4.0.0-build-0209"
"WixToolset.Sdk": "4.0.0-build-0210"
}
}
2 changes: 1 addition & 1 deletion src/wixext/DependencyExtensionFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace WixToolset.Dependency

public class DependencyExtensionFactory : BaseExtensionFactory
{
protected override IEnumerable<Type> ExtensionTypes => new[]
protected override IReadOnlyCollection<Type> ExtensionTypes => new[]
{
typeof(DependencyCompiler),
typeof(DependencyExtensionData),
Expand Down

0 comments on commit 4d56d41

Please sign in to comment.