@joebigelow / wix / commits / 47e58658

Use IReadOnlyCollection.

Sean Hall committed Apr 19, 2021 at 23:57 UTC 47e586580ac36d37d14aa6afd07dbd820d24a64b
3 files changed +3 -3
global.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "msbuild-sdks": {
3 - "WixToolset.Sdk": "4.0.0-build-0209"
3 + "WixToolset.Sdk": "4.0.0-build-0210"
4 },
5 "sdk": {
6 "allowPrerelease": false
src/wixext/BalBurnBackendExtension.cs
+1 -1
@@ -25,7 +25,7 @@ namespace WixToolset.Bal
25 BalSymbolDefinitions.WixStdbaOverridableVariable,
26 };
27
28 - protected override IEnumerable<IntermediateSymbolDefinition> SymbolDefinitions => BurnSymbolDefinitions;
28 + protected override IReadOnlyCollection<IntermediateSymbolDefinition> SymbolDefinitions => BurnSymbolDefinitions;
29
30 public override void SymbolsFinalized(IntermediateSection section)
31 {
src/wixext/BalExtensionFactory.cs
+1 -1
@@ -8,7 +8,7 @@ namespace WixToolset.Bal
8
9 public class BalExtensionFactory : BaseExtensionFactory
10 {
11 - protected override IEnumerable<Type> ExtensionTypes => new[]
11 + protected override IReadOnlyCollection<Type> ExtensionTypes => new[]
12 {
13 typeof(BalCompiler),
14 typeof(BalExtensionData),