From 00fb36846c733642cc396f0a46988da70c6211f7 Mon Sep 17 00:00:00 2001 From: Xavier ARDISSON Date: Wed, 13 Nov 2024 09:12:47 +0100 Subject: [PATCH 1/2] Support .Net 9.0 --- .../SoftFluent.AesSample.Fluent.csproj | 8 ++++---- samples/AesSample/SoftFluent.AesSample.csproj | 12 ++++++------ ...nt.EntityFrameworkCore.DataEncryption.csproj | 17 ++++++++++------- ...tityFrameworkCore.DataEncryption.Test.csproj | 16 ++++++++-------- 4 files changed, 28 insertions(+), 25 deletions(-) diff --git a/samples/AesSample.Fluent/SoftFluent.AesSample.Fluent.csproj b/samples/AesSample.Fluent/SoftFluent.AesSample.Fluent.csproj index 2b30e2c..28ab86e 100644 --- a/samples/AesSample.Fluent/SoftFluent.AesSample.Fluent.csproj +++ b/samples/AesSample.Fluent/SoftFluent.AesSample.Fluent.csproj @@ -2,14 +2,14 @@ Exe - net8.0 + net9.0 10 - - - + + + diff --git a/samples/AesSample/SoftFluent.AesSample.csproj b/samples/AesSample/SoftFluent.AesSample.csproj index bba44fa..f6a331e 100644 --- a/samples/AesSample/SoftFluent.AesSample.csproj +++ b/samples/AesSample/SoftFluent.AesSample.csproj @@ -1,19 +1,19 @@ - + Exe - net8.0 + net9.0 10 - - - + + + - + diff --git a/src/EntityFrameworkCore.DataEncryption/SoftFluent.EntityFrameworkCore.DataEncryption.csproj b/src/EntityFrameworkCore.DataEncryption/SoftFluent.EntityFrameworkCore.DataEncryption.csproj index 5304785..2bea010 100644 --- a/src/EntityFrameworkCore.DataEncryption/SoftFluent.EntityFrameworkCore.DataEncryption.csproj +++ b/src/EntityFrameworkCore.DataEncryption/SoftFluent.EntityFrameworkCore.DataEncryption.csproj @@ -1,14 +1,14 @@  - netstandard2.0;net6.0;net7.0;net8.0 + netstandard2.0;net6.0;net7.0;net8.0;net9.0 10.0 true SoftFluent.EntityFrameworkCore.DataEncryption SoftFluent.EntityFrameworkCore.DataEncryption true - 6.0.0 - Filipe GOMES PEIXOTO + 7.0.0 + SoftFluent SoftFluent EntityFrameworkCore.DataEncryption https://github.com/SoftFluent/EntityFrameworkCore.DataEncryption @@ -36,16 +36,19 @@ - + - + - + + + + - + True diff --git a/test/EntityFrameworkCore.DataEncryption.Test/SoftFluent.EntityFrameworkCore.DataEncryption.Test.csproj b/test/EntityFrameworkCore.DataEncryption.Test/SoftFluent.EntityFrameworkCore.DataEncryption.Test.csproj index 4ac1b54..1487255 100644 --- a/test/EntityFrameworkCore.DataEncryption.Test/SoftFluent.EntityFrameworkCore.DataEncryption.Test.csproj +++ b/test/EntityFrameworkCore.DataEncryption.Test/SoftFluent.EntityFrameworkCore.DataEncryption.Test.csproj @@ -1,7 +1,7 @@  - net8.0 + net9.0 10 false SoftFluent.EntityFrameworkCore.Encryption.Test @@ -13,16 +13,16 @@ - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - + + + + + all runtime; build; native; contentfiles; analyzers From d97d03e025ccf69a6dbf670646ed01d7ceff4e37 Mon Sep 17 00:00:00 2001 From: Xavier ARDISSON Date: Wed, 13 Nov 2024 09:26:15 +0100 Subject: [PATCH 2/2] Build.yml for .Net 9 --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c3a17a..8584c2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,7 @@ jobs: 6.0.x 7.0.x 8.0.x + 9.0.x - name: Display .NET version run: dotnet --version @@ -31,7 +32,7 @@ jobs: run: dotnet restore - name: Build - run: dotnet build SoftFluent.EntityFrameworkCore.DataEncryption.sln --configuration Release -f net8.0 --no-restore + run: dotnet build SoftFluent.EntityFrameworkCore.DataEncryption.sln --configuration Release -f net9.0 --no-restore - name: Run unit tests run: dotnet test --configuration Release --collect:"XPlat Code Coverage" --settings ./test/EntityFrameworkCore.DataEncryption.Test/runsettings.xml