Skip to content

Commit 19570a7

Browse files
Copilotrenemadsen
andcommitted
Update to .NET 10 - Update csproj files and GitHub Actions workflows
Co-authored-by: renemadsen <[email protected]>
1 parent 74b9e51 commit 19570a7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/dotnet-core-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
- name: Setup .NET Core
171171
uses: actions/setup-dotnet@v3
172172
with:
173-
dotnet-version: 9.0.x
173+
dotnet-version: 10.0.x
174174
- name: Install dependencies
175175
run: dotnet restore eFormAPI/eFormAPI.sln
176176
- name: Build

.github/workflows/dotnet-core-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169
- name: Setup .NET Core
170170
uses: actions/setup-dotnet@v3
171171
with:
172-
dotnet-version: 9.0.x
172+
dotnet-version: 10.0.x
173173
- name: Install dependencies
174174
run: dotnet restore eFormAPI/eFormAPI.sln
175175
- name: Build

eFormAPI/eFormAPI.Web.Integration.Tests/eFormAPI.Web.Integration.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<IsPublishable>false</IsPublishable>
77
</PropertyGroup>
88

eFormAPI/eFormAPI.Web.Tests/eFormAPI.Web.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<IsPublishable>false</IsPublishable>
77
</PropertyGroup>
88

eFormAPI/eFormAPI.Web/eFormAPI.Web.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<PropertyGroup>
8-
<TargetFramework>net9.0</TargetFramework>
8+
<TargetFramework>net10.0</TargetFramework>
99
<ServerGarbageCollection>false</ServerGarbageCollection>
1010
</PropertyGroup>
1111

0 commit comments

Comments
 (0)