Skip to content

Commit 826dda5

Browse files
committed
Revert "feat: Update to net10"
This reverts commit d8e2146.
1 parent 605d025 commit 826dda5

File tree

7 files changed

+2
-9
lines changed

7 files changed

+2
-9
lines changed

.github/workflows/codeql.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
dotnet-version: |
3030
8.0.x
3131
9.0.x
32-
10.0.x
3332
3433
- name: Initialize CodeQL
3534
uses: github/codeql-action/init@v3

.github/workflows/create-release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
dotnet-version: |
5555
8.0.x
5656
9.0.x
57-
10.0.x
5857
5958
- name: Update CHANGELOG file
6059
if: github.event.inputs.prerelease == 'false'

.github/workflows/dotnet.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
dotnet-version: |
3232
8.0.x
3333
9.0.x
34-
10.0.x
3534
3635
- name: Restore dependencies
3736
run: dotnet restore

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ All notable changes to **NCronJob** will be documented in this file. The project
1111
### Added
1212

1313
- `IJobExecutionContext` exposes how the job was started. Reported by [@kikisaeba](https://github.com/kikisaeba) in [#261](https://github.com/NCronJob-Dev/NCronJob/issues/261). Fixed by [@linkdotnet](https://github.com/linkdotnet)
14-
- `net10.0` support.
1514

1615
### Changed
1716

Directory.Packages.props

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
<ItemGroup Label="NCronJob NET9 dependencies" Condition="'$(TargetFramework)' == 'net9.0'">
1717
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.6" />
1818
</ItemGroup>
19-
<ItemGroup Label="NCronJob NET9 dependencies" Condition="'$(TargetFramework)' == 'net10.0'">
20-
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.0-preview.5.25277.114" />
21-
</ItemGroup>
2219
<ItemGroup Label="Samples">
2320
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="8.0.16" />
2421
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="9.0.6" />

src/NCronJob/NCronJob.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>net8.0;net9.0;net10.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<RootNamespace>NCronJob</RootNamespace>

tests/NCronJob.Tests/NCronJob.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>net8.0;net9.0;net10.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<IsPackable>false</IsPackable>

0 commit comments

Comments
 (0)