From 8dd734425dcb68bc96472d8e50550aec41b81f80 Mon Sep 17 00:00:00 2001 From: Jay Harris Date: Tue, 2 Apr 2024 23:05:56 -0700 Subject: [PATCH] docs(azure): revised README for project --- src/azure/README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/azure/README.md b/src/azure/README.md index 3f5c375..8b50e43 100644 --- a/src/azure/README.md +++ b/src/azure/README.md @@ -1,24 +1,28 @@ # Aranasoft.Cobweb.Azure ![Azure DevOps](https://dev.azure.com/aranasoft/Cobweb/_apis/build/status/Aranasoft.Cobweb.Azure?branchName=master) -Boilerplate components for convenient Azure development. +`Aranasoft.Cobweb.Azure` is a utility library for Azure. It provides a set of tools and classes for working with Azure services, with a focus on Azure Service Bus and task queue management. The library is designed to be used with .NET and supports multiple target frameworks. Cobweb was created by [Arana Software](https://www.aranasoft.com), a software agency in Las Vegas, Nevada. +## Details + +The library includes a task queue system that uses Azure Service Bus for message transport. It provides a set of classes for creating, managing, and processing tasks in a queue. The task queue system supports task handlers, which are classes that handle specific types of tasks. Task handlers can be registered with the task queue system, and they will be automatically invoked when a task of the corresponding type is received. + ## Installation ### Aranasoft.Cobweb.Azure -From Package Manager Console: +To install Aranasoft.Cobweb.Azure, add a reference to the package in your project file. ```bash -PM> install-package Aranasoft.Cobweb.Azure +dotnet add package Aranasoft.Cobweb.Azure ``` -From .NET CLI: +Or from NuGet Package Manager: ```bash -> dotnet add package Aranasoft.Cobweb.Azure +Install-Package Aranasoft.Cobweb.Azure ``` ## License