Skip to content

Commit 88bd60c

Browse files
Increase C# language version to 11.0 and refactor sources accordingly
1 parent ef15b95 commit 88bd60c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Atata.Configuration.Json/Atata.Configuration.Json.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5-
<LangVersion>10.0</LangVersion>
5+
<LangVersion>11.0</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Version>2.3.0</Version>
88
<Description>C#/.NET package for Atata configuration through JSON files.

src/Atata.Configuration.Json/Mapping/JsonConfigMapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ private static void MapEventSubscriptions(List<EventSubscriptionJsonSection> sec
293293
builder.BuildingContext.DefaultAssemblyNamePatternToFindTypes);
294294

295295
builder.BuildingContext.EventSubscriptions.AddRange(
296-
sections.Select(x => eventSubscriptionMapper.Map(x)));
296+
sections.Select(eventSubscriptionMapper.Map));
297297
}
298298

299299
private static void MapScreenshots(ScreenshotsJsonSection section, AtataContextBuilder builder)

0 commit comments

Comments
 (0)