Skip to content

Commit

Permalink
Update to ASP.NET Core 7 preview 7
Browse files Browse the repository at this point in the history
Update to preview 7 of ASP.NET Core 7.
  • Loading branch information
martincostello committed Aug 11, 2022
1 parent 1bf0f8f commit 3f13e70
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<PackageVersion Include="coverlet.msbuild" Version="3.1.2" />
<PackageVersion Include="GitHubActionsTestLogger" Version="2.0.1" />
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.3.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0-preview.6.22330.3" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0-preview.6.22329.4" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0-preview.7.22376.6" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0-preview.7.22376.2" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageVersion Include="Microsoft.Playwright" Version="1.24.1" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.100-preview.6.22352.1",
"version": "7.0.100-preview.7.22377.5",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace MartinCostello.AppleFitnessWorkoutMapper;

[ExcludeFromCodeCoverage]
[JsonSerializable(typeof(IList<Track>))]
[JsonSerializable(typeof(List<Track>))] // TODO A change in behaviour means that it now wants the concrete type
[JsonSerializable(typeof(TrackCount))]
internal sealed partial class ApplicationJsonSerializerContext : JsonSerializerContext
{
Expand Down

0 comments on commit 3f13e70

Please sign in to comment.