diff --git a/docs/getting_started.md b/docs/getting_started.md index e58ca80..df4c675 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -26,7 +26,13 @@ The overall set of libraries are available through [NuGet](https://nuget.org), a At the moment (_January 2022_) they are developed as `.NET Standard 2.1` and thus compatible with all the profiles of the .NET framework greater or equal than the `.NET Core 3.1`. -The core library of the framework is `Deveel.Webhooks` and can be installed as follow +The core library of the framework is `Deveel.Webhooks` and can be installed through the `dotnet` tool command line + +```sh +$ dotnet add package Deveel.Webhooks +``` + +Or by editing your `.csproj` file and adding a `` entry. ``` xml @@ -50,13 +56,13 @@ This provides all the functions that are needed to send webhooks to a given dest The libraries currently provided by the framework are the following: -| Library | Description | -| ----------------------------------- | ----------------------------------------------------------------------------------------------------------------- | -| **Deveel.Webhooks.Model** | The foundation library that defines the webhooks information model | -| **Deveel.Webhooks** | Provides the foundation contracts of the webhook service and basic implementations for the sending functions | -| **Deveel.Webhooks.Service** | Implements the functions to manage and resolve webhook subscriptions | -| **Deveel.Webhooks.Service.MongoDb** | An implementation of the webhoom management data layer that is backed by [MongoDB](https://mongodb.com) databases | -| **Deveel.Webhooks.DynamicLinq** | The webhook subscription filtering engine that uses the [Dynamic LINQ](https://dynamic-linq.net/) expressions | +| Library | Description | NuGet | +| ----------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | +| **Deveel.Webhooks.Model** | The foundation library that defines the webhooks information model | [Package](https://www.nuget.org/packages/Deveel.Webhooks.Model/) | +| **Deveel.Webhooks** | Provides the foundation contracts of the webhook service and basic implementations for the sending functions | [Package](https://www.nuget.org/packages/Deveel.Webhooks/) | +| **Deveel.Webhooks.Service** | Implements the functions to manage and resolve webhook subscriptions | [Package](https://www.nuget.org/packages/Deveel.Webhooks.Service/) | +| **Deveel.Webhooks.Service.MongoDb** | An implementation of the webhoom management data layer that is backed by [MongoDB](https://mongodb.com) databases | [Package](https://www.nuget.org/packages/Deveel.Webhooks.MongoDb/) | +| **Deveel.Webhooks.DynamicLinq** | The webhook subscription filtering engine that uses the [Dynamic LINQ](https://dynamic-linq.net/) expressions | [Package](https://www.nuget.org/packages/Deveel.Webhooks.DynamicLinq/) | You can obtain the stable versions of these libraries from the [NuGet Official](https://nuget.org) channel. diff --git a/src/Deveel.Webhooks.DynamicLinq/Deveel.Webhooks.DynamicLinq.csproj b/src/Deveel.Webhooks.DynamicLinq/Deveel.Webhooks.DynamicLinq.csproj index ed926af..71e1f64 100644 --- a/src/Deveel.Webhooks.DynamicLinq/Deveel.Webhooks.DynamicLinq.csproj +++ b/src/Deveel.Webhooks.DynamicLinq/Deveel.Webhooks.DynamicLinq.csproj @@ -2,6 +2,7 @@ netstandard2.1 + 1.0.1 Deveel false true diff --git a/src/Deveel.Webhooks.Model/Deveel.Webhooks.Model.csproj b/src/Deveel.Webhooks.Model/Deveel.Webhooks.Model.csproj index 25262e5..4ea9d01 100644 --- a/src/Deveel.Webhooks.Model/Deveel.Webhooks.Model.csproj +++ b/src/Deveel.Webhooks.Model/Deveel.Webhooks.Model.csproj @@ -2,6 +2,7 @@ netstandard2.1 + 1.0.1 Deveel false true diff --git a/src/Deveel.Webhooks.Receiver.AspNetCore/Deveel.Webhooks.Receiver.AspNetCore.csproj b/src/Deveel.Webhooks.Receiver.AspNetCore/Deveel.Webhooks.Receiver.AspNetCore.csproj index 4863e90..72815ea 100644 --- a/src/Deveel.Webhooks.Receiver.AspNetCore/Deveel.Webhooks.Receiver.AspNetCore.csproj +++ b/src/Deveel.Webhooks.Receiver.AspNetCore/Deveel.Webhooks.Receiver.AspNetCore.csproj @@ -2,6 +2,7 @@ netstandard2.1 + 1.0.1 Deveel true antonello diff --git a/src/Deveel.Webhooks.Receiver/Deveel.Webhooks.Receiver.csproj b/src/Deveel.Webhooks.Receiver/Deveel.Webhooks.Receiver.csproj index b41163b..e5aa714 100644 --- a/src/Deveel.Webhooks.Receiver/Deveel.Webhooks.Receiver.csproj +++ b/src/Deveel.Webhooks.Receiver/Deveel.Webhooks.Receiver.csproj @@ -2,6 +2,7 @@ netstandard2.1 + 1.0.1 Deveel true Antonello Provenzano diff --git a/src/Deveel.Webhooks.Service.MongoDb/Deveel.Webhooks.MongoDb.csproj b/src/Deveel.Webhooks.Service.MongoDb/Deveel.Webhooks.MongoDb.csproj index 2d5e652..8accf73 100644 --- a/src/Deveel.Webhooks.Service.MongoDb/Deveel.Webhooks.MongoDb.csproj +++ b/src/Deveel.Webhooks.Service.MongoDb/Deveel.Webhooks.MongoDb.csproj @@ -2,6 +2,7 @@ netstandard2.1 + 1.0.1 Deveel false true diff --git a/src/Deveel.Webhooks.Service/Deveel.Webhooks.Service.csproj b/src/Deveel.Webhooks.Service/Deveel.Webhooks.Service.csproj index cdacb59..9d0f9e9 100644 --- a/src/Deveel.Webhooks.Service/Deveel.Webhooks.Service.csproj +++ b/src/Deveel.Webhooks.Service/Deveel.Webhooks.Service.csproj @@ -2,6 +2,7 @@ netstandard2.1 + 1.0.1 Deveel false true diff --git a/src/Deveel.Webhooks/Deveel.Webhooks.csproj b/src/Deveel.Webhooks/Deveel.Webhooks.csproj index 72a0d40..cd95504 100644 --- a/src/Deveel.Webhooks/Deveel.Webhooks.csproj +++ b/src/Deveel.Webhooks/Deveel.Webhooks.csproj @@ -2,6 +2,7 @@ netstandard2.1 + 1.0.1 Deveel false true