From 016bf91eeba02bc5323c76464c18bfc531f791c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C4=99czek?= Date: Wed, 4 Sep 2024 21:31:13 +0200 Subject: [PATCH] Updating README --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8d3fa7a..cec7798 100644 --- a/README.md +++ b/README.md @@ -9,15 +9,20 @@ [![NuGet Version](https://img.shields.io/nuget/v/Lib.Azure.WebJobs.Extensions.WebPush?label=Lib.Azure.WebJobs.Extensions.WebPush&logo=nuget)](https://www.nuget.org/packages/Lib.Azure.WebJobs.Extensions.WebPush) [![NuGet Downloads](https://img.shields.io/nuget/dt/Lib.Azure.WebJobs.Extensions.WebPush?label=⭳)](https://www.nuget.org/packages/Lib.Azure.WebJobs.Extensions.WebPush) +[![NuGet Version](https://img.shields.io/nuget/v/Lib.Azure.Functions.Worker.Extensions.WebPush?label=Lib.Azure.Functions.Worker.Extensions.WebPush&logo=nuget)](https://www.nuget.org/packages/Lib.Azure.Functions.Worker.Extensions.WebPush) +[![NuGet Downloads](https://img.shields.io/nuget/dt/Lib.Azure.Functions.Worker.Extensions.WebPush?label=⭳)](https://www.nuget.org/packages/Lib.Azure.Functions.Worker.Extensions.WebPush) + Lib.Net.Http.WebPush is a library which provides a [Web Push Protocol](https://tools.ietf.org/html/rfc8030) based client for Push Service. It provides support for [Voluntary Application Server Identification (VAPID) for Web Push](https://tools.ietf.org/html/rfc8292) and [Message Encryption for Web Push](https://tools.ietf.org/html/rfc8291). Lib.AspNetCore.WebPush is a library which provides ASP.NET Core extensions for Web Push Protocol based client for Push Service. -Lib.Azure.WebJobs.Extensions.WebPush is a library which provides [Azure Functions](https://functions.azure.com/) and [Azure WebJobs](https://docs.microsoft.com/en-us/azure/app-service/web-sites-create-web-jobs) binding extensions for Web Push Protocol based client for Push Service. +Lib.Azure.WebJobs.Extensions.WebPush is a library which provides [Azure Functions](https://functions.azure.com/) in-process model and [Azure WebJobs](https://docs.microsoft.com/en-us/azure/app-service/web-sites-create-web-jobs) binding extensions for Web Push Protocol based client for Push Service. + +Lib.Azure.Functions.Worker.Extensions.WebPush is a library which provides [Azure Functions](https://functions.azure.com/) isolated worker model extensions for Web Push Protocol based client for Push Service. ## Installation -You can install [Lib.Net.Http.WebPush](https://www.nuget.org/packages/Lib.Net.Http.WebPush), [Lib.AspNetCore.WebPush](https://www.nuget.org/packages/Lib.AspNetCore.WebPush), and [Lib.Azure.WebJobs.Extensions.WebPush](https://www.nuget.org/packages/Lib.Azure.WebJobs.Extensions.WebPush) from NuGet. +You can install [Lib.Net.Http.WebPush](https://www.nuget.org/packages/Lib.Net.Http.WebPush), [Lib.AspNetCore.WebPush](https://www.nuget.org/packages/Lib.AspNetCore.WebPush), [Lib.Azure.WebJobs.Extensions.WebPush](https://www.nuget.org/packages/Lib.Azure.WebJobs.Extensions.WebPush), and [Lib.Azure.Functions.Worker.Extensions.WebPush](https://www.nuget.org/packages/Lib.Azure.Functions.Worker.Extensions.WebPush) from NuGet. ``` PM> Install-Package Lib.Net.Http.WebPush @@ -31,6 +36,10 @@ PM> Install-Package Lib.AspNetCore.WebPush PM> Install-Package Lib.Azure.WebJobs.Extensions.WebPush ``` +``` +PM> Install-Package Lib.Azure.Functions.Worker.Extensions.WebPush +``` + ## Documentation The documentation is available [here](https://tpeczek.github.io/Lib.Net.Http.WebPush/).