Skip to content

Commit a0bfe2c

Browse files
Update dotnet monorepo to v10
1 parent 1bd5ab7 commit a0bfe2c

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

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

3-
FROM mcr.microsoft.com/dotnet/aspnet:9.0-alpine AS base
3+
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine AS base
44
WORKDIR /app
55
ARG BUILDPLATFORM
66

7-
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS build
7+
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:10.0-alpine AS build
88
WORKDIR /
99
COPY ["src/Auth/Auth.csproj", "Auth/"]
1010
RUN dotnet restore "Auth/Auth.csproj"

src/Auth/Auth.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313

1414
<ItemGroup>
1515
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.1.0" />
16-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.18" />
17-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.18" />
18-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.18">
16+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.10" />
17+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.10" />
18+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.10">
1919
<PrivateAssets>all</PrivateAssets>
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2121
</PackageReference>
2222
<PackageReference Include="NLog.Extensions.Logging" Version="6.1.4" />
2323
<PackageReference Include="NLog.Web.AspNetCore" Version="6.1.4" />
2424
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
2525
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.6" />
26-
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.18" />
26+
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="10.0.10" />
2727
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.22.0" />
2828
</ItemGroup>
2929

tests/Auth.Tests/Auth.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<ItemGroup>
1111
<PackageReference Include="coverlet.collector" Version="10.0.1" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.18" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.10" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.8.1" />
1414
<PackageReference Include="xunit" Version="2.9.3" />
1515
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />

0 commit comments

Comments
 (0)