Skip to content

Commit 8b9c930

Browse files
Update dotnet monorepo to v10
1 parent 10cfee7 commit 8b9c930

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS talks-env
5+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS talks-env
66

77
# Install Node.js:
88
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
@@ -18,7 +18,7 @@ COPY ./ForneverMind/wwwroot/talks ./ForneverMind/wwwroot/talks/
1818
COPY ./Scripts ./Scripts/
1919
RUN pwsh ./Scripts/Prepare-Talks.ps1
2020

21-
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
21+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build-env
2222

2323
# Install Node.js:
2424
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
@@ -42,7 +42,7 @@ COPY ./ForneverMind.Tests ./ForneverMind.Tests/
4242
COPY --from=talks-env /talks/ForneverMind/wwwroot/talks/ ./ForneverMind/wwwroot/talks/
4343
RUN dotnet publish ./ForneverMind -c Release -o /app/out
4444

45-
FROM mcr.microsoft.com/dotnet/aspnet:6.0
45+
FROM mcr.microsoft.com/dotnet/aspnet:10.0
4646

4747
WORKDIR /app
4848

ForneverMind.TestFramework/ForneverMind.TestFramework.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ SPDX-License-Identifier: MIT
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="6.0.35" />
19+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.3" />
2020
<ProjectReference Include="..\ForneverMind\ForneverMind.fsproj" />
2121
</ItemGroup>
2222

ForneverMind/ForneverMind.fsproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ SPDX-License-Identifier: MIT
4343
<PackageReference Include="Jint" Version="4.6.0" />
4444
<PackageReference Include="Markdig" Version="0.45.0" />
4545
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.2.0" />
46-
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="6.0.35" />
46+
<PackageReference Include="Microsoft.AspNetCore.Owin" Version="10.0.3" />
4747
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
48-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
49-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
50-
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
48+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3" />
49+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.3" />
50+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.3" />
5151
<PackageReference Include="RazorLight" Version="2.3.1" />
5252
<PackageReference Include="WilderMinds.RssSyndication" Version="1.7.1" />
5353
<ProjectReference Include="..\ForneverMind.Frontend\ForneverMind.Frontend.proj"

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": "10.0.103",
44
"rollForward": "latestMinor",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)