From f073952352351bca1945e57f554070be95ffdfc0 Mon Sep 17 00:00:00 2001 From: Timm Hoffmeister Date: Tue, 12 Dec 2023 10:28:36 +0000 Subject: [PATCH 1/2] Upgrade projects to dotnet8 --- samples/HelloWorld.Grains/HelloWorld.Grains.csproj | 2 +- samples/HelloWorld.Interfaces/HelloWorld.Interfaces.csproj | 2 +- samples/KubeClient/KubeClient.csproj | 2 +- samples/KubeGatewayHost/KubeGatewayHost.csproj | 2 +- samples/KubeSiloHost/KubeSiloHost.csproj | 2 +- .../Orleans.Clustering.Kubernetes.csproj | 2 +- .../Orleans.Clustering.Kubernetes.Test.csproj | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/samples/HelloWorld.Grains/HelloWorld.Grains.csproj b/samples/HelloWorld.Grains/HelloWorld.Grains.csproj index 938b8c4..a91c974 100644 --- a/samples/HelloWorld.Grains/HelloWorld.Grains.csproj +++ b/samples/HelloWorld.Grains/HelloWorld.Grains.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 latest diff --git a/samples/HelloWorld.Interfaces/HelloWorld.Interfaces.csproj b/samples/HelloWorld.Interfaces/HelloWorld.Interfaces.csproj index 4d59095..e2a4619 100644 --- a/samples/HelloWorld.Interfaces/HelloWorld.Interfaces.csproj +++ b/samples/HelloWorld.Interfaces/HelloWorld.Interfaces.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 latest diff --git a/samples/KubeClient/KubeClient.csproj b/samples/KubeClient/KubeClient.csproj index e66ef99..1b179d3 100644 --- a/samples/KubeClient/KubeClient.csproj +++ b/samples/KubeClient/KubeClient.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 latest diff --git a/samples/KubeGatewayHost/KubeGatewayHost.csproj b/samples/KubeGatewayHost/KubeGatewayHost.csproj index 13f62a5..ab5ad46 100644 --- a/samples/KubeGatewayHost/KubeGatewayHost.csproj +++ b/samples/KubeGatewayHost/KubeGatewayHost.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 latest diff --git a/samples/KubeSiloHost/KubeSiloHost.csproj b/samples/KubeSiloHost/KubeSiloHost.csproj index 13f62a5..ab5ad46 100644 --- a/samples/KubeSiloHost/KubeSiloHost.csproj +++ b/samples/KubeSiloHost/KubeSiloHost.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 latest diff --git a/src/Orleans.Clustering.Kubernetes/Orleans.Clustering.Kubernetes.csproj b/src/Orleans.Clustering.Kubernetes/Orleans.Clustering.Kubernetes.csproj index 6c9b417..9aabd01 100644 --- a/src/Orleans.Clustering.Kubernetes/Orleans.Clustering.Kubernetes.csproj +++ b/src/Orleans.Clustering.Kubernetes/Orleans.Clustering.Kubernetes.csproj @@ -2,7 +2,7 @@ latest - net7.0 + net8.0 diff --git a/test/Orleans.Clustering.Kubernetes.Test/Orleans.Clustering.Kubernetes.Test.csproj b/test/Orleans.Clustering.Kubernetes.Test/Orleans.Clustering.Kubernetes.Test.csproj index f4cdbd2..780e71b 100644 --- a/test/Orleans.Clustering.Kubernetes.Test/Orleans.Clustering.Kubernetes.Test.csproj +++ b/test/Orleans.Clustering.Kubernetes.Test/Orleans.Clustering.Kubernetes.Test.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 latest false From eb88d496f6eae2f9f99bd7e920bd86276ba2025b Mon Sep 17 00:00:00 2001 From: Timm Hoffmeister Date: Tue, 12 Dec 2023 10:33:28 +0000 Subject: [PATCH 2/2] Upgraded to dotnet8 in github actions --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 929f17b..b705cc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.100 + dotnet-version: 8.0.100 - name: Build run: dotnet build --configuration Release diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ad2d0fe..69dc22e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 7.0.100 + dotnet-version: 8.0.100 - name: Pack working-directory: src/Orleans.Clustering.Kubernetes run: dotnet pack --configuration Release -p:Version=${GITHUB_REF##*/v}