Skip to content

Commit f4b9386

Browse files
chore(deps): update dotnet monorepo to v9
1 parent 7559f2d commit f4b9386

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-ef": {
6-
"version": "8.0.19",
6+
"version": "9.0.8",
77
"commands": [
88
"dotnet-ef"
99
]

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": "8.0.413",
3+
"version": "9.0.304",
44
"rollForward": "latestFeature"
55
}
66
}

integration-tests.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88
<ItemGroup>
99
<PackageReference Include="Xunit.Extensions.Assemblyfixture" Version="2.6.0"/>
10-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.19"/>
10+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.8"/>
1111
<PackageReference Include="Meziantou.Extensions.Logging.Xunit" Version="1.0.16"/>
1212
</ItemGroup>
1313
</Project>

src/Agenda.API/Agenda.API.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.19" />
18+
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="9.0.8" />
1919
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="4.*" />
2020
<PackageReference Include="Polly" Version="8.6.2" />
2121
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
@@ -29,14 +29,14 @@
2929
<PackageReference Include="NodaTime.Serialization.SystemTextJson" Version="1.3.0" />
3030
<PackageReference Include="CorrelationId" Version="3.0.1" />
3131
<PackageReference Include="Candoumbe.Forms" Version="0.3.0" />
32-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="8.0.19" />
32+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="9.0.8" />
3333
<PackageReference Include="Extensions.Hosting.AsyncInitialization" Version="1.0.0" />
3434
<PackageReference Include="DataFilters.AspNetCore" Version="0.4.0" />
35-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.19">
35+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.8">
3636
<PrivateAssets>all</PrivateAssets>
3737
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3838
</PackageReference>
39-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.19" />
39+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.8" />
4040
<PackageReference Include="EntityFrameworkCore.Sqlite.NodaTime" Version="9.2.1" />
4141
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="9.0.4" />
4242
<PackageReference Include="Fluxera.StronglyTypedId.SystemTextJson" Version="9.2.0" />

src/Agenda.API/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
22

3-
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
3+
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
44
WORKDIR /app
55
EXPOSE 80
66
EXPOSE 443
77

8-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
8+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
99
WORKDIR /src
1010
COPY ["src/Agenda.API/Agenda.API.csproj", "src/Agenda.API/"]
1111
COPY ["src/Agenda.DataStores.Postgres/Agenda.DataStores.Postgres.csproj", "src/Agenda.DataStores.Postgres/"]

tests/Agenda.API.IntegrationTests/Agenda.API.IntegrationTests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
<ItemGroup>
1515
<PackageReference Include="NodaTime.Serialization.JsonNet" Version="3.2.0" />
1616
<PackageReference Include="TestContainers.PostgreSql" Version="4.6.0" />
17-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.20" />
18-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.19" />
17+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.8" />
18+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="9.0.8" />
1919
<PackageReference Include="FluentAssertions.Nodatime" Version="2.0.1" />
20-
<PackageReference Update="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.19" />
20+
<PackageReference Update="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.8" />
2121
</ItemGroup>
2222

2323
<ItemGroup>
2424
<ProjectReference Include="..\..\src\Agenda.API\Agenda.API.csproj" />
25-
<PackageReference Update="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.19" />
25+
<PackageReference Update="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="9.0.8" />
2626
</ItemGroup>
2727

2828
</Project>

0 commit comments

Comments
 (0)