Skip to content

Commit 4228122

Browse files
committed
Version update
1 parent 678a721 commit 4228122

File tree

8 files changed

+21
-8
lines changed

8 files changed

+21
-8
lines changed

docs/getting_started.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ The overall set of libraries are available through [NuGet](https://nuget.org), a
2626

2727
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`.
2828

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.
3036

3137
``` xml
3238
<Project Sdk="Microsoft.NET.Sdk">
@@ -50,13 +56,13 @@ This provides all the functions that are needed to send webhooks to a given dest
5056

5157
The libraries currently provided by the framework are the following:
5258

53-
| Library | Description |
54-
| ----------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
55-
| **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 |
59+
| Library | Description | NuGet |
60+
| ----------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
61+
| **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/) |
6066

6167
You can obtain the stable versions of these libraries from the [NuGet Official](https://nuget.org) channel.
6268

src/Deveel.Webhooks.DynamicLinq/Deveel.Webhooks.DynamicLinq.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5+
<VersionPrefix>1.0.1</VersionPrefix>
56
<RootNamespace>Deveel</RootNamespace>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
78
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>

src/Deveel.Webhooks.Model/Deveel.Webhooks.Model.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5+
<VersionPrefix>1.0.1</VersionPrefix>
56
<RootNamespace>Deveel</RootNamespace>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
78
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>

src/Deveel.Webhooks.Receiver.AspNetCore/Deveel.Webhooks.Receiver.AspNetCore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5+
<VersionPrefix>1.0.1</VersionPrefix>
56
<RootNamespace>Deveel</RootNamespace>
67
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
78
<Authors>antonello</Authors>

src/Deveel.Webhooks.Receiver/Deveel.Webhooks.Receiver.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5+
<VersionPrefix>1.0.1</VersionPrefix>
56
<RootNamespace>Deveel</RootNamespace>
67
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
78
<Authors>Antonello Provenzano</Authors>

src/Deveel.Webhooks.Service.MongoDb/Deveel.Webhooks.MongoDb.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5+
<VersionPrefix>1.0.1</VersionPrefix>
56
<RootNamespace>Deveel</RootNamespace>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
78
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>

src/Deveel.Webhooks.Service/Deveel.Webhooks.Service.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5+
<VersionPrefix>1.0.1</VersionPrefix>
56
<RootNamespace>Deveel</RootNamespace>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
78
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>

src/Deveel.Webhooks/Deveel.Webhooks.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5+
<VersionPrefix>1.0.1</VersionPrefix>
56
<RootNamespace>Deveel</RootNamespace>
67
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
78
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>

0 commit comments

Comments
 (0)