From 4f614586b876b3d3d287a78d27a34bbc6b9b2aa1 Mon Sep 17 00:00:00 2001 From: "Eric Sibly [chullybun]" Date: Tue, 12 Dec 2023 17:05:52 -0800 Subject: [PATCH] Add .NET 8 support and update packages. (#47) --- .github/workflows/CI.yml | 1 + CHANGELOG.md | 4 ++++ Common.targets | 2 +- src/DbEx.MySql/DbEx.MySql.csproj | 6 +++--- src/DbEx.SqlServer/DbEx.SqlServer.csproj | 6 +++--- src/DbEx/DbEx.csproj | 6 +++--- tests/DbEx.Test/DbEx.Test.csproj | 2 +- 7 files changed, 16 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d4e2ad1..4a2c076 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,6 +20,7 @@ jobs: dotnet-version: | 6.0.x 7.0.x + 8.0.x - name: Restore dependencies run: dotnet restore diff --git a/CHANGELOG.md b/CHANGELOG.md index 04c8759..781dc7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Represents the **NuGet** versions. +## v2.3.13 +- *Fixed:* Updated `CoreEx` to version `3.6.1`. +- *Fixed:* Added `net8.0` support. + ## v2.3.12 - *Fixed:* The `OutBox.EventOutbox` table clustered/non-clustered indexes changed to simplify default implementation. Implementors of this capability should review the indexing, etc., based on usage to optimize. - _Note:_ it is also expected that the _Outbox_ tables are regularly purged, i.e. dequeued events should be removed. This is the responsibility of the implementor to perform as required. diff --git a/Common.targets b/Common.targets index a5c21e7..0428169 100644 --- a/Common.targets +++ b/Common.targets @@ -1,6 +1,6 @@ - 2.3.12 + 2.3.13 preview Avanade Avanade diff --git a/src/DbEx.MySql/DbEx.MySql.csproj b/src/DbEx.MySql/DbEx.MySql.csproj index 96d391c..69532f6 100644 --- a/src/DbEx.MySql/DbEx.MySql.csproj +++ b/src/DbEx.MySql/DbEx.MySql.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;netstandard2.1 + net6.0;net7.0;net8.0;netstandard2.1 DbEx.MySql DbEx DbEx MySQL Migration Tool. @@ -39,8 +39,8 @@ - - + + diff --git a/src/DbEx.SqlServer/DbEx.SqlServer.csproj b/src/DbEx.SqlServer/DbEx.SqlServer.csproj index 17518d3..9c4e3c6 100644 --- a/src/DbEx.SqlServer/DbEx.SqlServer.csproj +++ b/src/DbEx.SqlServer/DbEx.SqlServer.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;netstandard2.1 + net6.0;net7.0;net8.0;netstandard2.1 DbEx.SqlServer DbEx DbEx SQL Server Migration Tool. @@ -30,8 +30,8 @@ - - + + diff --git a/src/DbEx/DbEx.csproj b/src/DbEx/DbEx.csproj index 6d452d4..3472e6c 100644 --- a/src/DbEx/DbEx.csproj +++ b/src/DbEx/DbEx.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0;netstandard2.1 + net6.0;net7.0;net8.0;netstandard2.1 DbEx DbEx DbEx Database Migration Tool. @@ -21,8 +21,8 @@ - - + + diff --git a/tests/DbEx.Test/DbEx.Test.csproj b/tests/DbEx.Test/DbEx.Test.csproj index ad50df6..b5227d1 100644 --- a/tests/DbEx.Test/DbEx.Test.csproj +++ b/tests/DbEx.Test/DbEx.Test.csproj @@ -11,7 +11,7 @@ - +