From a0421ef73d549d5a2b9224023c3cdde35333b568 Mon Sep 17 00:00:00 2001 From: "Oleg V. Kozlyuk" Date: Wed, 28 Aug 2024 13:59:14 +0200 Subject: [PATCH] Add support for .NET 8.0 (#523) --- .github/workflows/benchmark.yml | 2 +- .github/workflows/reusable.yml | 3 +-- ClickHouse.Client/ClickHouse.Client.csproj | 2 +- analysis.yml | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 925a9c0d..7ca1a50f 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -35,7 +35,7 @@ jobs: with: dotnet-version: | 6.x - 7.x + 8.x - name: Run run: dotnet run --project ClickHouse.Client.Benchmark/ClickHouse.Client.Benchmark.csproj --framework net6.0 --configuration Release -- --join --filter "*" --artifacts . --job Short diff --git a/.github/workflows/reusable.yml b/.github/workflows/reusable.yml index 64d73359..8f018c3c 100644 --- a/.github/workflows/reusable.yml +++ b/.github/workflows/reusable.yml @@ -44,9 +44,8 @@ jobs: with: dotnet-version: | 3.1.x - 5.x 6.x - 7.x + 8.x - name: Install GitHubActionsTestLogger run: dotnet add ClickHouse.Client.Tests/ClickHouse.Client.Tests.csproj package GitHubActionsTestLogger --no-restore diff --git a/ClickHouse.Client/ClickHouse.Client.csproj b/ClickHouse.Client/ClickHouse.Client.csproj index 51cac8a9..176bd808 100644 --- a/ClickHouse.Client/ClickHouse.Client.csproj +++ b/ClickHouse.Client/ClickHouse.Client.csproj @@ -1,7 +1,7 @@ - net462;net48;netstandard2.1;netcoreapp3.1;net5.0;net6.0 + net462;net48;netstandard2.1;net6.0;net8.0 false true https://github.com/DarkWanderer/ClickHouse.Client diff --git a/analysis.yml b/analysis.yml index 8d96f6f4..4a6e9b68 100644 --- a/analysis.yml +++ b/analysis.yml @@ -21,7 +21,7 @@ jobs: with: dotnet-version: | 6.x - 7.x + 8.x - name: Run .NET Code Analysis uses: dotnet/code-analysis@main