Skip to content

Commit

Permalink
update readme and metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
justdmitry committed Apr 23, 2024
1 parent 44a41ba commit c9df90e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Each task is a separate `Task`, which sleeps in background for a while, wakes up

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.

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).
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`).

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

## Main features

* TargetFrameworks: `netstandard2.0`, `netcoreapp3.1`, `net6.0`, `net8.0`
* TargetFramework: `net8.0` (use older versions for previous frameworks);
* Start and Stop your task at any time;
* [`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
* CancelationToken may be used for Stopping;
Expand Down Expand Up @@ -101,7 +101,7 @@ Use NuGet package [RecurrentTasks](https://www.nuget.org/packages/RecurrentTasks
* Microsoft.Extensions.Hosting.Abstractions
* Microsoft.Extensions.Logging.Abstractions

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

## Testing

Expand Down
2 changes: 1 addition & 1 deletion src/RecurrentTasks/RecurrentTasks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/justdmitry/RecurrentTasks.git</RepositoryUrl>
<Version>7.0.0-beta</Version>
<Version>7.0.0</Version>
<Description>RecurrentTasks for .NET allows you to run simple recurrent background tasks with specific intervals, without complex frameworks, persistance, etc...</Description>
<Authors>just_dmitry</Authors>
<Company />
Expand Down

0 comments on commit c9df90e

Please sign in to comment.