Skip to content

Commit a131509

Browse files
Update dotnet monorepo to v8
1 parent 16fbdb7 commit a131509

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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": "7.0.20",
6+
"version": "8.0.7",
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": "7.0.410",
3+
"version": "8.0.303",
44
"rollForward": "latestFeature"
55
}
66
}

integration-tests.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
</PropertyGroup>
88
<ItemGroup>
99
<PackageReference Include="Xunit.Extensions.Assemblyfixture" Version="2.6.0"/>
10-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.20"/>
10+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.7"/>
1111
</ItemGroup>
1212
</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="7.0.20" />
18+
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.7" />
1919
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="4.*" />
2020
<PackageReference Include="Polly" Version="8.4.1" />
2121
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
@@ -29,11 +29,11 @@
2929
<PackageReference Include="NodaTime.Serialization.SystemTextJson" Version="1.2.0" />
3030
<PackageReference Include="CorrelationId" Version="3.0.1" />
3131
<PackageReference Include="Candoumbe.Forms" Version="0.3.0-beta0005" />
32-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="7.0.20" />
32+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="8.0.7" />
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="7.0.20" />
36-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.20" />
35+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.7" />
36+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.7" />
3737
<PackageReference Include="EntityFrameworkCore.Sqlite.NodaTime" Version="7.0.0" />
3838
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="7.0.18" />
3939
<PackageReference Include="Fluxera.StronglyTypedId.SystemTextJson" Version="8.3.6" />

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:7.0 AS base
3+
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
44
WORKDIR /app
55
EXPOSE 80
66
EXPOSE 443
77

8-
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
8+
FROM mcr.microsoft.com/dotnet/sdk:8.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/"]

0 commit comments

Comments
 (0)