Skip to content

Commit

Permalink
Merge pull request #640 from camunda-community-hub/ck-net80
Browse files Browse the repository at this point in the history
Migrate project to .net 8.0
  • Loading branch information
ChrisKujawa authored Jan 27, 2024
2 parents 9836a3b + 7d4761c commit b28ac1f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.x
dotnet-version: 8.x
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.x
dotnet-version: 8.x
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.x
dotnet-version: 8.x
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.x
dotnet-version: 8.x
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.x
dotnet-version: 8.x
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion Client/Client.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<Version>2.4.0</Version>
<Authors>Christopher Zell</Authors>
<Company />
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.0",
"version": "8.0.100",
"rollForward": "latestMajor",
"allowPrerelease": true
}
Expand Down

0 comments on commit b28ac1f

Please sign in to comment.