diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-19 16:12:28 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-04-19 16:37:03 -0700 |
| commit | 7f4c41fc2c6ce55f8f1b87a5516573d99a9beec0 (patch) | |
| tree | bf62fa354b7ebbf6eb25cc5af1f6bbbb7ce80fe6 /src/WixToolset.Core/CommandLine/CompileCommand.cs | |
| parent | bb40dc8a911ec0679016cbbf7132ea813ea1a3ad (diff) | |
| download | wix-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/CommandLine/CompileCommand.cs')
| -rw-r--r-- | src/WixToolset.Core/CommandLine/CompileCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/CommandLine/CompileCommand.cs b/src/WixToolset.Core/CommandLine/CompileCommand.cs index 54d1b6f1..6e31b241 100644 --- a/src/WixToolset.Core/CommandLine/CompileCommand.cs +++ b/src/WixToolset.Core/CommandLine/CompileCommand.cs | |||
| @@ -42,7 +42,7 @@ namespace WixToolset.Core.CommandLine | |||
| 42 | 42 | ||
| 43 | private Platform Platform { get; } | 43 | private Platform Platform { get; } |
| 44 | 44 | ||
| 45 | public IEnumerable<string> IncludeSearchPaths { get; } | 45 | public IReadOnlyCollection<string> IncludeSearchPaths { get; } |
| 46 | 46 | ||
| 47 | public bool ShowLogo => throw new NotImplementedException(); | 47 | public bool ShowLogo => throw new NotImplementedException(); |
| 48 | 48 | ||
