From 79222f28ecded7cf85cea770249aa810acde14d6 Mon Sep 17 00:00:00 2001 From: Francis Pion Date: Sat, 29 Nov 2025 12:36:11 -0500 Subject: [PATCH 1/3] .NET 10 Upgrade. --- demo/Logitar.Demo/Dockerfile | 4 ++-- demo/Logitar.Demo/Logitar.Demo.csproj | 6 +++--- .../Logitar.Data.PostgreSQL.csproj | 4 ++-- .../Logitar.Data.SqlServer.csproj | 4 ++-- src/Logitar.Data/Logitar.Data.csproj | 2 +- .../Logitar.Net.Mail.Mailgun.csproj | 2 +- .../Logitar.Net.Mail.SendGrid.csproj | 2 +- .../Logitar.Net.Sms.Twilio.csproj | 2 +- src/Logitar.Net/Logitar.Net.csproj | 2 +- src/Logitar.Security/Logitar.Security.csproj | 2 +- ...Logitar.Data.PostgreSQL.IntegrationTests.csproj | 10 +++++----- .../Logitar.Data.PostgreSQL.UnitTests.csproj | 6 +++--- .../Logitar.Data.SqlServer.IntegrationTests.csproj | 10 +++++----- .../Logitar.Data.SqlServer.UnitTests.csproj | 6 +++--- .../Logitar.Data.UnitTests.csproj | 6 +++--- .../Logitar.Net.IntegrationTests.csproj | 6 +++--- ...ogitar.Net.Mail.Mailgun.IntegrationTests.csproj | 14 +++++++------- .../Logitar.Net.Mail.Mailgun.UnitTests.csproj | 6 +++--- ...gitar.Net.Mail.SendGrid.IntegrationTests.csproj | 14 +++++++------- .../Logitar.Net.Mail.SendGrid.UnitTests.csproj | 6 +++--- .../Logitar.Net.Sms.Twilio.IntegrationTests.csproj | 14 +++++++------- .../Logitar.Net.Sms.Twilio.UnitTests.csproj | 6 +++--- .../Logitar.Net.UnitTests.csproj | 6 +++--- .../Logitar.Security.UnitTests.csproj | 6 +++--- tests/Logitar.UnitTests/Logitar.UnitTests.csproj | 8 ++++---- 25 files changed, 77 insertions(+), 77 deletions(-) diff --git a/demo/Logitar.Demo/Dockerfile b/demo/Logitar.Demo/Dockerfile index 81506bf..c117db2 100644 --- a/demo/Logitar.Demo/Dockerfile +++ b/demo/Logitar.Demo/Dockerfile @@ -1,12 +1,12 @@ #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:9.0 AS base +FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base USER app WORKDIR /app EXPOSE 8080 EXPOSE 8081 -FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build +FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src COPY ["demo/Logitar.Demo/Logitar.Demo.csproj", "demo/Logitar.Demo/"] diff --git a/demo/Logitar.Demo/Logitar.Demo.csproj b/demo/Logitar.Demo/Logitar.Demo.csproj index b7476c4..30a3776 100644 --- a/demo/Logitar.Demo/Logitar.Demo.csproj +++ b/demo/Logitar.Demo/Logitar.Demo.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable a1f26849-0f4b-4b46-b010-84d4eb31d77c @@ -18,8 +18,8 @@ - - + + diff --git a/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj b/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj index 478ba4f..1786a63 100644 --- a/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj +++ b/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable True @@ -35,7 +35,7 @@ - + diff --git a/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj b/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj index 5016eaa..a0628bb 100644 --- a/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj +++ b/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable True @@ -35,7 +35,7 @@ - + diff --git a/src/Logitar.Data/Logitar.Data.csproj b/src/Logitar.Data/Logitar.Data.csproj index d4be17d..0a37a51 100644 --- a/src/Logitar.Data/Logitar.Data.csproj +++ b/src/Logitar.Data/Logitar.Data.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable True diff --git a/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj b/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj index b14e69c..e708d42 100644 --- a/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj +++ b/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable True diff --git a/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj b/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj index 2bb2427..d174b43 100644 --- a/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj +++ b/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable True diff --git a/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj b/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj index 6aefe8f..4e59349 100644 --- a/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj +++ b/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable True diff --git a/src/Logitar.Net/Logitar.Net.csproj b/src/Logitar.Net/Logitar.Net.csproj index 5fd83d6..c51284a 100644 --- a/src/Logitar.Net/Logitar.Net.csproj +++ b/src/Logitar.Net/Logitar.Net.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable True diff --git a/src/Logitar.Security/Logitar.Security.csproj b/src/Logitar.Security/Logitar.Security.csproj index f499362..2bb40a8 100644 --- a/src/Logitar.Security/Logitar.Security.csproj +++ b/src/Logitar.Security/Logitar.Security.csproj @@ -1,7 +1,7 @@ - net9.0 + net10.0 enable enable True diff --git a/tests/Logitar.Data.PostgreSQL.IntegrationTests/Logitar.Data.PostgreSQL.IntegrationTests.csproj b/tests/Logitar.Data.PostgreSQL.IntegrationTests/Logitar.Data.PostgreSQL.IntegrationTests.csproj index dd17b5c..202161d 100644 --- a/tests/Logitar.Data.PostgreSQL.IntegrationTests/Logitar.Data.PostgreSQL.IntegrationTests.csproj +++ b/tests/Logitar.Data.PostgreSQL.IntegrationTests/Logitar.Data.PostgreSQL.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -33,11 +33,11 @@ - - - + + + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Data.PostgreSQL.UnitTests/Logitar.Data.PostgreSQL.UnitTests.csproj b/tests/Logitar.Data.PostgreSQL.UnitTests/Logitar.Data.PostgreSQL.UnitTests.csproj index 27d9dca..910779c 100644 --- a/tests/Logitar.Data.PostgreSQL.UnitTests/Logitar.Data.PostgreSQL.UnitTests.csproj +++ b/tests/Logitar.Data.PostgreSQL.UnitTests/Logitar.Data.PostgreSQL.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,9 +19,9 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Data.SqlServer.IntegrationTests/Logitar.Data.SqlServer.IntegrationTests.csproj b/tests/Logitar.Data.SqlServer.IntegrationTests/Logitar.Data.SqlServer.IntegrationTests.csproj index 16b7418..3ec8390 100644 --- a/tests/Logitar.Data.SqlServer.IntegrationTests/Logitar.Data.SqlServer.IntegrationTests.csproj +++ b/tests/Logitar.Data.SqlServer.IntegrationTests/Logitar.Data.SqlServer.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -33,11 +33,11 @@ - - - + + + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Data.SqlServer.UnitTests/Logitar.Data.SqlServer.UnitTests.csproj b/tests/Logitar.Data.SqlServer.UnitTests/Logitar.Data.SqlServer.UnitTests.csproj index 601cec4..b4292d6 100644 --- a/tests/Logitar.Data.SqlServer.UnitTests/Logitar.Data.SqlServer.UnitTests.csproj +++ b/tests/Logitar.Data.SqlServer.UnitTests/Logitar.Data.SqlServer.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,9 +19,9 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Data.UnitTests/Logitar.Data.UnitTests.csproj b/tests/Logitar.Data.UnitTests/Logitar.Data.UnitTests.csproj index e47c4f9..800519c 100644 --- a/tests/Logitar.Data.UnitTests/Logitar.Data.UnitTests.csproj +++ b/tests/Logitar.Data.UnitTests/Logitar.Data.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,9 +19,9 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Net.IntegrationTests/Logitar.Net.IntegrationTests.csproj b/tests/Logitar.Net.IntegrationTests/Logitar.Net.IntegrationTests.csproj index 8285274..e1073e5 100644 --- a/tests/Logitar.Net.IntegrationTests/Logitar.Net.IntegrationTests.csproj +++ b/tests/Logitar.Net.IntegrationTests/Logitar.Net.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,9 +19,9 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Net.Mail.Mailgun.IntegrationTests/Logitar.Net.Mail.Mailgun.IntegrationTests.csproj b/tests/Logitar.Net.Mail.Mailgun.IntegrationTests/Logitar.Net.Mail.Mailgun.IntegrationTests.csproj index 40d9350..2e51cf6 100644 --- a/tests/Logitar.Net.Mail.Mailgun.IntegrationTests/Logitar.Net.Mail.Mailgun.IntegrationTests.csproj +++ b/tests/Logitar.Net.Mail.Mailgun.IntegrationTests/Logitar.Net.Mail.Mailgun.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -37,13 +37,13 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - + + + + + - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/Logitar.Net.Mail.Mailgun.UnitTests/Logitar.Net.Mail.Mailgun.UnitTests.csproj b/tests/Logitar.Net.Mail.Mailgun.UnitTests/Logitar.Net.Mail.Mailgun.UnitTests.csproj index 455e74b..1b7fd11 100644 --- a/tests/Logitar.Net.Mail.Mailgun.UnitTests/Logitar.Net.Mail.Mailgun.UnitTests.csproj +++ b/tests/Logitar.Net.Mail.Mailgun.UnitTests/Logitar.Net.Mail.Mailgun.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -23,9 +23,9 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/Logitar.Net.Mail.SendGrid.IntegrationTests/Logitar.Net.Mail.SendGrid.IntegrationTests.csproj b/tests/Logitar.Net.Mail.SendGrid.IntegrationTests/Logitar.Net.Mail.SendGrid.IntegrationTests.csproj index ea876ca..5bf340a 100644 --- a/tests/Logitar.Net.Mail.SendGrid.IntegrationTests/Logitar.Net.Mail.SendGrid.IntegrationTests.csproj +++ b/tests/Logitar.Net.Mail.SendGrid.IntegrationTests/Logitar.Net.Mail.SendGrid.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -34,13 +34,13 @@ - - - - - + + + + + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Net.Mail.SendGrid.UnitTests/Logitar.Net.Mail.SendGrid.UnitTests.csproj b/tests/Logitar.Net.Mail.SendGrid.UnitTests/Logitar.Net.Mail.SendGrid.UnitTests.csproj index 0e4556b..f5514c0 100644 --- a/tests/Logitar.Net.Mail.SendGrid.UnitTests/Logitar.Net.Mail.SendGrid.UnitTests.csproj +++ b/tests/Logitar.Net.Mail.SendGrid.UnitTests/Logitar.Net.Mail.SendGrid.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,9 +19,9 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Net.Sms.Twilio.IntegrationTests/Logitar.Net.Sms.Twilio.IntegrationTests.csproj b/tests/Logitar.Net.Sms.Twilio.IntegrationTests/Logitar.Net.Sms.Twilio.IntegrationTests.csproj index 1ee3add..1ed101f 100644 --- a/tests/Logitar.Net.Sms.Twilio.IntegrationTests/Logitar.Net.Sms.Twilio.IntegrationTests.csproj +++ b/tests/Logitar.Net.Sms.Twilio.IntegrationTests/Logitar.Net.Sms.Twilio.IntegrationTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -34,13 +34,13 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - + + + + + - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/Logitar.Net.Sms.Twilio.UnitTests/Logitar.Net.Sms.Twilio.UnitTests.csproj b/tests/Logitar.Net.Sms.Twilio.UnitTests/Logitar.Net.Sms.Twilio.UnitTests.csproj index a5868bb..4ed72e4 100644 --- a/tests/Logitar.Net.Sms.Twilio.UnitTests/Logitar.Net.Sms.Twilio.UnitTests.csproj +++ b/tests/Logitar.Net.Sms.Twilio.UnitTests/Logitar.Net.Sms.Twilio.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -23,9 +23,9 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/Logitar.Net.UnitTests/Logitar.Net.UnitTests.csproj b/tests/Logitar.Net.UnitTests/Logitar.Net.UnitTests.csproj index 8e543e9..ac36cc4 100644 --- a/tests/Logitar.Net.UnitTests/Logitar.Net.UnitTests.csproj +++ b/tests/Logitar.Net.UnitTests/Logitar.Net.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,9 +19,9 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.Security.UnitTests/Logitar.Security.UnitTests.csproj b/tests/Logitar.Security.UnitTests/Logitar.Security.UnitTests.csproj index 4b07d74..c3a0d60 100644 --- a/tests/Logitar.Security.UnitTests/Logitar.Security.UnitTests.csproj +++ b/tests/Logitar.Security.UnitTests/Logitar.Security.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,9 +19,9 @@ - + - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/tests/Logitar.UnitTests/Logitar.UnitTests.csproj b/tests/Logitar.UnitTests/Logitar.UnitTests.csproj index c5a315f..bd29bd8 100644 --- a/tests/Logitar.UnitTests/Logitar.UnitTests.csproj +++ b/tests/Logitar.UnitTests/Logitar.UnitTests.csproj @@ -1,7 +1,7 @@  - net9.0 + net10.0 enable enable @@ -19,11 +19,11 @@ - - + + - + runtime; build; native; contentfiles; analyzers; buildtransitive all From 7294350a76085eb50f595c95b96caabce15b4581 Mon Sep 17 00:00:00 2001 From: Francis Pion Date: Sat, 29 Nov 2025 13:27:45 -0500 Subject: [PATCH 2/3] csproj --- src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj | 6 +++--- src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj | 6 +++--- src/Logitar.Data/Logitar.Data.csproj | 6 +++--- .../Logitar.Net.Mail.Mailgun.csproj | 6 +++--- .../Logitar.Net.Mail.SendGrid.csproj | 6 +++--- src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj | 6 +++--- src/Logitar.Net/Logitar.Net.csproj | 6 +++--- src/Logitar.Security/Logitar.Security.csproj | 6 +++--- src/Logitar/Logitar.csproj | 6 +++--- 9 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj b/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj index 1786a63..5a566ce 100644 --- a/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj +++ b/src/Logitar.Data.PostgreSQL/Logitar.Data.PostgreSQL.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.1.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.1 + 10.0.0 en-CA True - NuGet upgrade. + .NET10 and NuGet upgrades. logitar net framework data postgresql https://github.com/Logitar/Logitar.NET/tree/dev/src/Logitar.Data.PostgreSQL diff --git a/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj b/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj index a0628bb..a3f2ea7 100644 --- a/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj +++ b/src/Logitar.Data.SqlServer/Logitar.Data.SqlServer.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.1.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.1 + 10.0.0 en-CA True - NuGet upgrade. + .NET10 and NuGet upgrades. logitar net framework data sqlserver https://github.com/Logitar/Logitar.NET/tree/dev/src/Logitar.Data.SqlServer diff --git a/src/Logitar.Data/Logitar.Data.csproj b/src/Logitar.Data/Logitar.Data.csproj index 0a37a51..33e683e 100644 --- a/src/Logitar.Data/Logitar.Data.csproj +++ b/src/Logitar.Data/Logitar.Data.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.0.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.0 + 10.0.0 en-CA True - Upgraded to .NET9. + .NET10 and NuGet upgrades. logitar net framework data commonsql https://github.com/Logitar/Logitar.NET/tree/dev/src/Logitar.Data diff --git a/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj b/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj index e708d42..01ed13b 100644 --- a/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj +++ b/src/Logitar.Net.Mail.Mailgun/Logitar.Net.Mail.Mailgun.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.0.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.0 + 10.0.0 en-CA True - Upgraded to .NET9. + .NET10 and NuGet upgrades. logitar net framework http email mailgun https://github.com/Logitar/Logitar.NET/tree/dev/src/Logitar.Net.Mail.Mailgun diff --git a/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj b/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj index d174b43..8652505 100644 --- a/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj +++ b/src/Logitar.Net.Mail.SendGrid/Logitar.Net.Mail.SendGrid.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.0.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.0 + 10.0.0 en-CA True - Upgraded to .NET9. + .NET10 and NuGet upgrades. logitar net framework http email sendgrid https://github.com/Logitar/Logitar.NET/tree/dev/src/Logitar.Net.Mail.SendGrid diff --git a/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj b/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj index 4e59349..b0565ec 100644 --- a/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj +++ b/src/Logitar.Net.Sms.Twilio/Logitar.Net.Sms.Twilio.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.0.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.0 + 10.0.0 en-CA True - Upgraded to .NET9. + .NET10 and NuGet upgrades. logitar net framework http sms text message twilio https://github.com/Logitar/Logitar.NET/tree/main/src/Logitar.Net.Sms.Twilio diff --git a/src/Logitar.Net/Logitar.Net.csproj b/src/Logitar.Net/Logitar.Net.csproj index c51284a..bae71e2 100644 --- a/src/Logitar.Net/Logitar.Net.csproj +++ b/src/Logitar.Net/Logitar.Net.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.0.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.0 + 10.0.0 en-CA True - Upgraded to .NET9. + .NET10 and NuGet upgrades. logitar net framework http email https://github.com/Logitar/Logitar.NET/tree/main/src/Logitar.Net diff --git a/src/Logitar.Security/Logitar.Security.csproj b/src/Logitar.Security/Logitar.Security.csproj index 2bb40a8..a115ff3 100644 --- a/src/Logitar.Security/Logitar.Security.csproj +++ b/src/Logitar.Security/Logitar.Security.csproj @@ -14,14 +14,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.0.1.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.0.1 + 10.0.0 en-CA True - Fixed ClaimHelper UTC conversion. + .NET10 and NuGet upgrades. logitar net framework security https://github.com/Logitar/Logitar.NET/tree/dev/src/Logitar.Security diff --git a/src/Logitar/Logitar.csproj b/src/Logitar/Logitar.csproj index 8426b0b..4e583be 100644 --- a/src/Logitar/Logitar.csproj +++ b/src/Logitar/Logitar.csproj @@ -15,14 +15,14 @@ README.md git https://github.com/Logitar/Logitar.NET - 7.1.0.0 + 10.0.0.0 $(AssemblyVersion) LICENSE True - 7.1.0 + 10.0.0 en-CA True - Added `StringExtensions.Humanize` method. + .NET10 and NuGet upgrades. logitar net framework https://github.com/Logitar/Logitar.NET/tree/dev/src/Logitar From edd7727b96f92cff99b3281b77d32fa339c0ee36 Mon Sep 17 00:00:00 2001 From: Francis Pion Date: Sat, 29 Nov 2025 13:29:04 -0500 Subject: [PATCH 3/3] changelog --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d37b4..1868b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Nothing yet. +## [1.21.0] - 2025-11-29 + +### Changed + +- Migrated to .NET10. + +### Fixed + +- NuGet upgrades. + ## [1.20.4] - 2025-04-16 ### Added @@ -287,7 +297,8 @@ Nothing yet. - Implemented StringExtensions. -[unreleased]: https://github.com/Logitar/Logitar.NET/compare/v1.20.4...HEAD +[unreleased]: https://github.com/Logitar/Logitar.NET/compare/v1.21.0...HEAD +[1.21.0]: https://github.com/Logitar/Logitar.NET/compare/v1.20.4...v1.21.0 [1.20.4]: https://github.com/Logitar/Logitar.NET/compare/v1.20.3...v1.20.4 [1.20.3]: https://github.com/Logitar/Logitar.NET/compare/v1.20.2...v1.20.3 [1.20.2]: https://github.com/Logitar/Logitar.NET/compare/v1.20.1...v1.20.2