Skip to content

Commit

Permalink
Update dotnet monorepo to v8
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 16, 2024
1 parent a9078fb commit e853794
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "7.0.20",
"version": "8.0.8",
"commands": [
"dotnet-ef"
]
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.410",
"version": "8.0.401",
"rollForward": "latestFeature"
}
}
2 changes: 1 addition & 1 deletion integration-tests.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Xunit.Extensions.Assemblyfixture" Version="2.6.0"/>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.20"/>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.8"/>
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions src/Agenda.API/Agenda.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="7.0.20" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="4.*" />
<PackageReference Include="Polly" Version="8.4.1" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.2" />
Expand All @@ -29,11 +29,11 @@
<PackageReference Include="NodaTime.Serialization.SystemTextJson" Version="1.2.0" />
<PackageReference Include="CorrelationId" Version="3.0.1" />
<PackageReference Include="Candoumbe.Forms" Version="0.3.0-beta0005" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="7.0.20" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="8.0.8" />
<PackageReference Include="Extensions.Hosting.AsyncInitialization" Version="1.0.0" />
<PackageReference Include="DataFilters.AspNetCore" Version="0.4.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.20" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.20" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.8" />
<PackageReference Include="EntityFrameworkCore.Sqlite.NodaTime" Version="7.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="7.0.18" />
<PackageReference Include="Fluxera.StronglyTypedId.SystemTextJson" Version="8.3.6" />
Expand Down
4 changes: 2 additions & 2 deletions src/Agenda.API/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,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.

FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
COPY ["src/Agenda.API/Agenda.API.csproj", "src/Agenda.API/"]
COPY ["src/Agenda.DataStores.Postgres/Agenda.DataStores.Postgres.csproj", "src/Agenda.DataStores.Postgres/"]
Expand Down

0 comments on commit e853794

Please sign in to comment.