You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting_started.md
+14-8Lines changed: 14 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,13 @@ The overall set of libraries are available through [NuGet](https://nuget.org), a
26
26
27
27
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`.
28
28
29
-
The core library of the framework is `Deveel.Webhooks` and can be installed as follow
29
+
The core library of the framework is `Deveel.Webhooks` and can be installed through the `dotnet` tool command line
30
+
31
+
```sh
32
+
$ dotnet add package Deveel.Webhooks
33
+
```
34
+
35
+
Or by editing your `.csproj` file and adding a `<PackageReference>` entry.
30
36
31
37
```xml
32
38
<ProjectSdk="Microsoft.NET.Sdk">
@@ -50,13 +56,13 @@ This provides all the functions that are needed to send webhooks to a given dest
50
56
51
57
The libraries currently provided by the framework are the following:
|**Deveel.Webhooks.Model**| The foundation library that defines the webhooks information model |
56
-
|**Deveel.Webhooks**| Provides the foundation contracts of the webhook service and basic implementations for the sending functions |
57
-
|**Deveel.Webhooks.Service**| Implements the functions to manage and resolve webhook subscriptions |
58
-
|**Deveel.Webhooks.Service.MongoDb**| An implementation of the webhoom management data layer that is backed by [MongoDB](https://mongodb.com) databases |
59
-
|**Deveel.Webhooks.DynamicLinq**| The webhook subscription filtering engine that uses the [Dynamic LINQ](https://dynamic-linq.net/) expressions |
|**Deveel.Webhooks.Model**| The foundation library that defines the webhooks information model |[Package](https://www.nuget.org/packages/Deveel.Webhooks.Model/)|
62
+
|**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/)|
63
+
|**Deveel.Webhooks.Service**| Implements the functions to manage and resolve webhook subscriptions |[Package](https://www.nuget.org/packages/Deveel.Webhooks.Service/)|
64
+
|**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/)|
65
+
|**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/)|
60
66
61
67
You can obtain the stable versions of these libraries from the [NuGet Official](https://nuget.org) channel.
0 commit comments