Wolfringo 2.2.0

dotnet add package Wolfringo --version 2.2.0
                    
NuGet\Install-Package Wolfringo -Version 2.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Wolfringo" Version="2.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Wolfringo" Version="2.2.0" />
                    
Directory.Packages.props
<PackageReference Include="Wolfringo" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Wolfringo --version 2.2.0
                    
#r "nuget: Wolfringo, 2.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Wolfringo&version=2.2.0
                    
Install Wolfringo as a Cake Addin
#tool nuget:?package=Wolfringo&version=2.2.0
                    
Install Wolfringo as a Cake Tool

Wolfringo

Nuget GitHub top language GitHub GitHub Workflow Status GitHub issues

This is a .NET library for WOLF (previously Palringo).

This library is designed with extensibility through Dependency Injection in mind, and is compatible with ASP.NET Core and other .NET Core Hosting scenarios through Wolfringo.Hosting package.

Library works with strongly-typed messages and responses, that are serialized when sending and deserialized when receiving. Message listeners can be invoked by message type, giving full benefit of strong typing. Additionally, Wolfringo.Utilities package provides a Sender extensions class, which abstracts common sending tasks. Utilities package is included by default with Wolfringo meta-package.

Wolfringo provides a built in Commands System. Commands System uses attributes to mark commands, which greatly reduces amount of boilerplace code needed.
The Commands System follows the design principles of entire Wolfringo library, and therefore is easily extensible and easily customizable thanks to Dependency Injection.

Documentation

A full Documentation is now available - it includes Tutorials and Guides, as well as full API Reference.

Source Repository

Wolfringo is open source, with code hosted on GitHub.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0 206 2 months ago
2.1.5 174 3 months ago 2.1.5 is deprecated because it has critical bugs.
2.1.4 224 4 months ago
2.1.3 114 5 months ago
2.1.2 97 5 months ago
2.1.1 93 5 months ago
2.1.0 105 5 months ago
2.0.1 481 11/13/2021
2.0.0 328 11/8/2021
1.1.2 394 2/5/2021
1.1.1 473 1/6/2021
1.1.0 381 1/4/2021
1.0.0 475 12/18/2020
1.0.0-beta5 369 12/17/2020
1.0.0-beta4 372 12/16/2020
1.0.0-beta2 346 11/30/2020
1.0.0-beta1 409 11/28/2020
0.4.1 415 10/18/2020
0.4.0 567 9/20/2020

- Add IChatEmbedDeserializer to allow deserialization of chat embeds;
- Add support for Link and Image preview embeds;
- Chat Messages and retrieved chat histories will now have Embeds property properly populated;
- ChatMessageSendingOptions provide 2 predefined statics: DisableEmbeds and DisableLinkDetection;
- Update UrlMetadataMessage to use headers with version 2;
- Fix an error when a message containing an embed is received;
- Fix link metadata message not having a serializer registered with the provider;
- ChatMessageSerializer now has a constructor that takes a IChatEmbedDeserializer;
- ChatHistoryResponseSerializer now has a constructor that takes a IChatEmbedDeserializer;
- Removed unnecessary locks in CommandsSystem, MessageSerializerProvider and ResponseSerializerProvider;
- BuildDefaultServiceProvider protected methods are marked as obsolete in WolfClient and CommandsSystem;