Skip to content

Commit c9df90e

Browse files
committed
update readme and metadata
1 parent 44a41ba commit c9df90e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Each task is a separate `Task`, which sleeps in background for a while, wakes up
66

77
Ideal, when you don't need to run many/heavy tasks and don't want to use "big" solutions with persistence and other bells and whistles.
88

9-
Written for **NET Core** (support for ASP.NET 5 and ASP.NET Core 1.0 and 2.0 is dropped since v6, use [v5.0.0 release](https://github.com/justdmitry/RecurrentTasks/releases/tag/v5.0.0) if you need support for old frameworks).
9+
Optimized for **NET 8.0** ([v5.0.0 release](https://github.com/justdmitry/RecurrentTasks/releases/tag/v5.0.0) if you need support for ASP.NET 5, ASP.NET Core 1.0 and 2.0; or [v6.6.0 release](https://github.com/justdmitry/RecurrentTasks/releases/tag/v6.6.0) for `net7`, `net6` or `netstandard2.0`).
1010

1111
[![Build status](https://ci.appveyor.com/api/projects/status/uucaowlbcxybi4v6/branch/master?svg=true)](https://ci.appveyor.com/project/justdmitry/recurrenttasks/branch/master)
1212
[![NuGet](https://img.shields.io/nuget/v/RecurrentTasks.svg?maxAge=86400&style=flat)](https://www.nuget.org/packages/RecurrentTasks/)
1313
[![codecov](https://codecov.io/gh/justdmitry/RecurrentTasks/branch/master/graph/badge.svg)](https://codecov.io/gh/justdmitry/RecurrentTasks)
1414

1515
## Main features
1616

17-
* TargetFrameworks: `netstandard2.0`, `netcoreapp3.1`, `net6.0`, `net8.0`
17+
* TargetFramework: `net8.0` (use older versions for previous frameworks);
1818
* Start and Stop your task at any time;
1919
* [`IHostedService`](https://docs.microsoft.com/en-us/dotnet/standard/microservices-architecture/multi-container-microservice-net-applications/background-tasks-with-ihostedservice) implemented for NET Core 2.0 (and above) app lifetime support
2020
* CancelationToken may be used for Stopping;
@@ -101,7 +101,7 @@ Use NuGet package [RecurrentTasks](https://www.nuget.org/packages/RecurrentTasks
101101
* Microsoft.Extensions.Hosting.Abstractions
102102
* Microsoft.Extensions.Logging.Abstractions
103103

104-
All above: versions v2.0.0 / v3.1.0 / v6.0.0 / v8.0.0 according to TargetFramework used.
104+
All above: versions 8.0.0.
105105

106106
## Testing
107107

src/RecurrentTasks/RecurrentTasks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageLicenseUrl></PackageLicenseUrl>
1313
<RepositoryType>git</RepositoryType>
1414
<RepositoryUrl>https://github.com/justdmitry/RecurrentTasks.git</RepositoryUrl>
15-
<Version>7.0.0-beta</Version>
15+
<Version>7.0.0</Version>
1616
<Description>RecurrentTasks for .NET allows you to run simple recurrent background tasks with specific intervals, without complex frameworks, persistance, etc...</Description>
1717
<Authors>just_dmitry</Authors>
1818
<Company />

0 commit comments

Comments
 (0)