From c9df90e086a8ae0560fb63e2dade3c98a3572de4 Mon Sep 17 00:00:00 2001 From: Dmitry Popov Date: Tue, 23 Apr 2024 15:26:00 +0300 Subject: [PATCH] update readme and metadata --- README.md | 6 +++--- src/RecurrentTasks/RecurrentTasks.csproj | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 67c4a5c..cf1e92c 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ 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/) @@ -14,7 +14,7 @@ Written for **NET Core** (support for ASP.NET 5 and ASP.NET Core 1.0 and 2.0 is ## 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; @@ -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 diff --git a/src/RecurrentTasks/RecurrentTasks.csproj b/src/RecurrentTasks/RecurrentTasks.csproj index 009acd0..3e2423d 100644 --- a/src/RecurrentTasks/RecurrentTasks.csproj +++ b/src/RecurrentTasks/RecurrentTasks.csproj @@ -12,7 +12,7 @@ git https://github.com/justdmitry/RecurrentTasks.git - 7.0.0-beta + 7.0.0 RecurrentTasks for .NET allows you to run simple recurrent background tasks with specific intervals, without complex frameworks, persistance, etc... just_dmitry