From 827d26373b7281d1db2342893d9aa2bc2517ddde Mon Sep 17 00:00:00 2001 From: David Janos Csillik Date: Mon, 26 Aug 2024 14:01:53 +0200 Subject: [PATCH 1/4] Update EF version --- Directory.Packages.props | 4 ++-- .../Funcky.EntityFrameworkCore.Test.csproj | 2 +- Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj | 2 +- global.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 210e84c..81afe02 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -5,7 +5,7 @@ - + @@ -16,7 +16,7 @@ - + diff --git a/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj b/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj index 08d72a9..cd8feeb 100644 --- a/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj +++ b/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 11.0 enable enable diff --git a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj index ead5195..b3a9fbd 100644 --- a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj +++ b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj @@ -1,6 +1,6 @@ - netstandard2.0 + net8.0 11.0 enable enable diff --git a/global.json b/global.json index 857e668..088e8bd 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.100", + "version": "8.0.100", "rollForward": "latestFeature" } } From c059c84bd7a783134f31040c677c8ffbe6039c84 Mon Sep 17 00:00:00 2001 From: David Janos Csillik Date: Mon, 26 Aug 2024 14:09:21 +0200 Subject: [PATCH 2/4] Fix lower range --- Directory.Packages.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 81afe02..08e5f65 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -5,7 +5,7 @@ - + @@ -16,7 +16,7 @@ - + From 0b4cde6859ea100973f460bb88600261f1f931a4 Mon Sep 17 00:00:00 2001 From: David Janos Csillik Date: Mon, 26 Aug 2024 14:15:26 +0200 Subject: [PATCH 3/4] Fix sdk version --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 088e8bd..d80ba68 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "8.0.401", "rollForward": "latestFeature" } } From 1e9d46acffaf818b27424133f96561b71a5c3bb6 Mon Sep 17 00:00:00 2001 From: David Janos Csillik Date: Mon, 26 Aug 2024 14:18:35 +0200 Subject: [PATCH 4/4] Add 8.0.8 to matrix --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ee08efb..06e9cf3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0'] + efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0', '8.0.8'] env: EntityFrameworkCoreVersion: ${{matrix.efcore}} steps: