aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CompileContext.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-19 16:12:28 -0700
committerRob Mensching <rob@firegiant.com>2021-04-19 16:37:03 -0700
commit7f4c41fc2c6ce55f8f1b87a5516573d99a9beec0 (patch)
treebf62fa354b7ebbf6eb25cc5af1f6bbbb7ce80fe6 /src/WixToolset.Core/CompileContext.cs
parentbb40dc8a911ec0679016cbbf7132ea813ea1a3ad (diff)
downloadwix-7f4c41fc2c6ce55f8f1b87a5516573d99a9beec0.tar.gz
wix-7f4c41fc2c6ce55f8f1b87a5516573d99a9beec0.tar.bz2
wix-7f4c41fc2c6ce55f8f1b87a5516573d99a9beec0.zip
Prefer IReadOnlyCollection<> or IReadOnlyList<> over IEnumerable<>
Closes wixtoolset/issues#6422
Diffstat (limited to 'src/WixToolset.Core/CompileContext.cs')
-rw-r--r--src/WixToolset.Core/CompileContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CompileContext.cs b/src/WixToolset.Core/CompileContext.cs
index 2aeb3998..d84d7aac 100644
--- a/src/WixToolset.Core/CompileContext.cs
+++ b/src/WixToolset.Core/CompileContext.cs
@@ -21,7 +21,7 @@ namespace WixToolset.Core
21 21
22 public string CompilationId { get; set; } 22 public string CompilationId { get; set; }
23 23
24 public IEnumerable<ICompilerExtension> Extensions { get; set; } 24 public IReadOnlyCollection<ICompilerExtension> Extensions { get; set; }
25 25
26 public Platform Platform { get; set; } 26 public Platform Platform { get; set; }
27 27