Skip to content

Commit 7e5e365

Browse files
Update to .NET 9 RC1
Update to release candidate 1 of .NET 9.
1 parent 5cfc1ca commit 7e5e365

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.100-preview.7.24407.12",
3+
"version": "9.0.100-rc.1.24452.12",
44
"allowPrerelease": false,
55
"rollForward": "latestMajor"
66
}

perf/TodoApp.Benchmarks/OpenApiBenchmarks.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Martin Costello, 2024. All rights reserved.
1+
// Copyright (c) Martin Costello, 2024. All rights reserved.
22
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
33

44
using BenchmarkDotNet.Attributes;
@@ -14,7 +14,6 @@ namespace TodoApp;
1414

1515
[EventPipeProfiler(EventPipeProfile.CpuSampling)]
1616
[MemoryDiagnoser]
17-
[ShortRunJob] // TODO Remove once https://github.com/dotnet/aspnetcore/issues/56990 is resolved
1817
public class OpenApiBenchmarks : IAsyncDisposable
1918
{
2019
private WebApplication? _app;

src/TodoApp/TodoApp.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
<TypeScriptToolsVersion>latest</TypeScriptToolsVersion>
1515
</PropertyGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0-preview.7.24406.2" />
18-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0-preview.7.24405.3" />
19-
<PackageReference Include="Microsoft.Extensions.ApiDescription.Server" Version="9.0.0-preview.7.24406.2" PrivateAssets="all" />
17+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0-rc.1.24452.1" />
18+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0-rc.1.24451.1" />
19+
<PackageReference Include="Microsoft.Extensions.ApiDescription.Server" Version="9.0.0-rc.1.24452.1" PrivateAssets="all" />
2020
<PackageReference Include="Microsoft.OpenApi" Version="1.6.21" />
21-
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.5.3" PrivateAssets="all" />
21+
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.6.2" PrivateAssets="all" />
2222
<PackageReference Include="NSwag.AspNetCore" Version="14.1.0" />
2323
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.3" />
2424
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.7.3" />

tests/TodoApp.Tests/TodoApp.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<FrameworkReference Include="Microsoft.AspNetCore.App" />
1010
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1" />
1111
<PackageReference Include="MartinCostello.Logging.XUnit" Version="0.4.0" />
12-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0-preview.7.24406.2" />
12+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0-rc.1.24452.1" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1414
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.21" />
1515
<PackageReference Include="Microsoft.Playwright" Version="1.46.0" />
16-
<PackageReference Include="Verify.Xunit" Version="26.4.0" />
16+
<PackageReference Include="Verify.Xunit" Version="26.4.4" />
1717
<PackageReference Include="xunit" Version="2.9.0" />
1818
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
1919
</ItemGroup>

0 commit comments

Comments
 (0)