From 7f4c41fc2c6ce55f8f1b87a5516573d99a9beec0 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 19 Apr 2021 16:12:28 -0700 Subject: Prefer IReadOnlyCollection<> or IReadOnlyList<> over IEnumerable<> Closes wixtoolset/issues#6422 --- src/WixToolset.Core/LibraryContext.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/WixToolset.Core/LibraryContext.cs') diff --git a/src/WixToolset.Core/LibraryContext.cs b/src/WixToolset.Core/LibraryContext.cs index 62d4e70c..e701cadf 100644 --- a/src/WixToolset.Core/LibraryContext.cs +++ b/src/WixToolset.Core/LibraryContext.cs @@ -23,15 +23,15 @@ namespace WixToolset.Core public bool BindFiles { get; set; } - public IEnumerable BindPaths { get; set; } + public IReadOnlyCollection BindPaths { get; set; } - public IEnumerable Extensions { get; set; } + public IReadOnlyCollection Extensions { get; set; } public string LibraryId { get; set; } - public IEnumerable Localizations { get; set; } + public IReadOnlyCollection Localizations { get; set; } - public IEnumerable Intermediates { get; set; } + public IReadOnlyCollection Intermediates { get; set; } public CancellationToken CancellationToken { get; set; } } -- cgit v1.2.3-55-g6feb