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

Commit de8a636

Browse files
committed
feat: Added support to .NET9
1 parent c9fbf4a commit de8a636

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.AspNetCore.ErrorHandler.ResponseTypes.csproj'
2525
TEST_PROJECT_PATH: 'tests/PowerUtils.AspNetCore.ErrorHandler.ResponseTypes.Tests/PowerUtils.AspNetCore.ErrorHandler.ResponseTypes.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
TEST_RESULTS_DIRECTORY: './TestResults'
1920

@@ -37,6 +38,7 @@ jobs:
3738
uses: actions/[email protected]
3839
with:
3940
dotnet-version: |
41+
${{ env.SDK_VERSION_9 }}
4042
${{ env.SDK_VERSION_8 }}
4143
${{ env.SDK_VERSION_7 }}
4244
${{ env.SDK_VERSION_6 }}

README.md

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

2828

2929
## Support to<a name="support-to"></a>
30+
- .NET 9.0
3031
- .NET 8.0
3132
- .NET 7.0
3233
- .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.AspNetCore.ErrorHandler.ResponseTypes.csproj

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

77
<!-- Assembly and projecto details -->
88
<!-- https://docs.microsoft.com/en-us/dotnet/standard/frameworks -->
9-
<TargetFrameworks>net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
9+
<TargetFrameworks>net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
1010

1111

1212
<AssemblyName>PowerUtils.AspNetCore.ErrorHandler.ResponseTypes</AssemblyName>

tests/PowerUtils.AspNetCore.ErrorHandler.ResponseTypes.Tests/PowerUtils.AspNetCore.ErrorHandler.ResponseTypes.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>net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
55

66
<RootNamespace>PowerUtils.AspNetCore.ErrorHandler.ResponseTypes.Tests</RootNamespace>
77
<AssemblyName>PowerUtils.AspNetCore.ErrorHandler.ResponseTypes.Tests</AssemblyName>

0 commit comments

Comments
 (0)