Skip to content

Commit 5824a66

Browse files
committed
Upgrading to .NET 9
1 parent c0de34c commit 5824a66

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
- name: Setup .NET Core
163163
uses: actions/setup-dotnet@v3
164164
with:
165-
dotnet-version: 9.0.x
165+
dotnet-version: 10.0.x
166166
- name: Build
167167
run: dotnet build eFormAPI/Plugins/Customers.Pn/Customers.Pn.sln
168168
- name: Unit Tests

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
- name: Setup .NET Core
156156
uses: actions/setup-dotnet@v3
157157
with:
158-
dotnet-version: 9.0.x
158+
dotnet-version: 10.0.x
159159
- name: Build
160160
run: dotnet build eFormAPI/Plugins/Customers.Pn/Customers.Pn.sln
161161
- name: Unit Tests

eFormAPI/Plugins/Customers.Pn/Customers.Pn.Test/Customers.Pn.Test.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
</PropertyGroup>
77

88
<ItemGroup>

eFormAPI/Plugins/Customers.Pn/Customers.Pn/Customers.Pn.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
</PropertyGroup>
66

77
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

0 commit comments

Comments
 (0)