Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit 1dbf750

Browse files
committed
feat: Added support to .NET9
1 parent e78dfaf commit 1dbf750

File tree

8 files changed

+12
-9
lines changed

8 files changed

+12
-9
lines changed

.github/workflows/nuget-vulnerabilites.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616

1717
env:
18-
SDK_VERSION: '8.0.402'
18+
SDK_VERSION: '9.0.100'
1919

2020

2121
jobs:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010

1111
env:
12-
SDK_VERSION: '8.0.402'
12+
SDK_VERSION: '9.0.100'
1313
PACKAGE_PATH: ./src/**/*.nupkg
1414
NUGET_SERVER: https://api.nuget.org/v3/index.json
1515

.github/workflows/sonarcloud-and-mutations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ on:
1818

1919

2020
env:
21-
SDK_VERSION: '8.0.402'
22-
FRAMEWORK_VERSION: 'net8.0'
21+
SDK_VERSION: '9.0.100'
22+
FRAMEWORK_VERSION: 'net9.0'
2323

2424
PROJECT_FILE: 'PowerUtils.Net.Primitives.csproj'
2525
TEST_PROJECT_PATH: 'tests/PowerUtils.Net.Primitives.Tests/PowerUtils.Net.Primitives.Tests.csproj'

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ on:
1111

1212

1313
env:
14-
SDK_VERSION_8: '8.0.402'
14+
SDK_VERSION_9: '9.0.100'
15+
SDK_VERSION_8: '8.0.404'
1516
SDK_VERSION_7: '7.0.410'
16-
SDK_VERSION_6: '6.0.425'
17+
SDK_VERSION_6: '6.0.428'
1718
SDK_VERSION_5: '5.0.408'
1819
SDK_VERSION_3: '3.1.426'
1920
TEST_RESULTS_DIRECTORY: './TestResults'
@@ -38,6 +39,7 @@ jobs:
3839
uses: actions/setup-dotnet@v4.1.0
3940
with:
4041
dotnet-version: |
42+
${{ env.SDK_VERSION_9 }}
4143
${{ env.SDK_VERSION_8 }}
4244
${{ env.SDK_VERSION_7 }}
4345
${{ env.SDK_VERSION_6 }}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929

3030
## Support to <a name="support-to"></a>
31+
- .NET 9.0
3132
- .NET 8.0
3233
- .NET 7.0
3334
- .NET 6.0

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "8.0.402"
3+
"version": "9.0.100"
44
}
55
}

src/PowerUtils.Net.Primitives.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<ProjectGuid>e6177b22-b10a-4481-bf48-5daaf33a1611</ProjectGuid>
55

6-
<TargetFrameworks>net8.0;net7.0;net6.0;net5.0;netcoreapp3.1</TargetFrameworks>
6+
<TargetFrameworks>net9.0;net8.0;net7.0;net6.0;net5.0;netcoreapp3.1</TargetFrameworks>
77

88
<RootNamespace>PowerUtils.Net</RootNamespace>
99
<AssemblyName>PowerUtils.Net.Primitives</AssemblyName>

tests/PowerUtils.Net.Primitives.Tests/PowerUtils.Net.Primitives.Tests.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-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
55

66
<RootNamespace>PowerUtils.Net.Primitives.Tests</RootNamespace>
77
<AssemblyName>PowerUtils.Net.Primitives.Tests</AssemblyName>

0 commit comments

Comments
 (0)