Skip to content

Commit 60fa9a6

Browse files
chore(deps): update dotnet monorepo to v10
1 parent add7663 commit 60fa9a6

File tree

9 files changed

+24
-23
lines changed

9 files changed

+24
-23
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.15",
6+
"version": "10.0.0",
77
"commands": [
88
"dotnet-ef"
99
]

Dockerfile.linux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:8.0.22 AS runtime
1+
FROM mcr.microsoft.com/dotnet/aspnet:10.0.0 AS runtime
22
RUN apt update
33
RUN apt install -y curl
44
COPY out /app

Dockerfile.linux.arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/arm64 mcr.microsoft.com/dotnet/aspnet:8.0.22 AS runtime
1+
FROM --platform=linux/arm64 mcr.microsoft.com/dotnet/aspnet:10.0.0 AS runtime
22
RUN apt update
33
RUN apt install -y curl
44
COPY out /app

Rnwood.Smtp4dev.Tests/Rnwood.Smtp4dev.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
3434
<PackageReference Include="Microsoft.Playwright" Version="1.47.0" />
3535
<PackageReference Include="Microsoft.Playwright.MSTest" Version="1.47.0" />
36-
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" />
36+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.0" />
3737
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.6.4" />
3838
<PackageReference Include="xunit" Version="2.9.3" />
3939
<PackageReference Include="xunit.extensibility.core" Version="2.9.3" />
@@ -45,7 +45,7 @@
4545
<PrivateAssets>all</PrivateAssets>
4646
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4747
</PackageReference>
48-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.11" />
48+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="10.0.0" />
4949
<PackageReference Include="Xunit.SkippableFact" Version="1.5.23" />
5050
</ItemGroup>
5151
</Project>

Rnwood.Smtp4dev/.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.15",
6+
"version": "10.0.0",
77
"commands": [
88
"dotnet-ef"
99
]

Rnwood.Smtp4dev/ClientApp/package-lock.json

Lines changed: 9 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Rnwood.Smtp4dev/ClientApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@fortawesome/free-solid-svg-icons": "^6.5.2",
1717
"@fortawesome/vue-fontawesome": "^3.0.6",
1818
"@jsx-email/doiuse-email": "^1.0.1",
19-
"@microsoft/signalr": "^8.0.0",
19+
"@microsoft/signalr": "^10.0.0",
2020
"@types/jest": "^29.5.12",
2121
"@types/sanitize-html": "^2.11.0",
2222
"@typescript-eslint/parser": "^8.0.0",

Rnwood.Smtp4dev/Rnwood.Smtp4dev.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
<PackageReference Include="Linq.Expression.Optimizer" Version="1.0.29" />
3737
<PackageReference Include="LinqKit" Version="1.3.8" />
3838
<PackageReference Include="MailKit" Version="4.11.0" />
39-
<PackageReference Include="Microsoft.AspNetCore.Hosting.WindowsServices" Version="8.0.15" />
40-
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="8.0.15" />
41-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.15">
39+
<PackageReference Include="Microsoft.AspNetCore.Hosting.WindowsServices" Version="10.0.0" />
40+
<PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="10.0.0" />
41+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0">
4242
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4343
<PrivateAssets>all</PrivateAssets>
4444
</PackageReference>
45-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.15" />
46-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.15" />
47-
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.1" />
45+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.0" />
46+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0" />
47+
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="10.0.0" />
4848
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.8.3">
4949
<PrivateAssets>all</PrivateAssets>
5050
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

smtpserver/Rnwood.SmtpServer/Rnwood.SmtpServer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
</PropertyGroup>
2626

2727
<ItemGroup>
28-
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
29-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
28+
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0" />
29+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
3030

3131
<PackageReference Include="System.Collections.NonGeneric" Version="4.3.0" />
3232
<PackageReference Include="System.Net.Security" Version="4.3.2" />

0 commit comments

Comments
 (0)