FluentExtensions
Fluent Extensions is a set of more than 100 .NET extensions, it especially made for helping developers to focus on the main tasks rather than get distracted by writing the same code again and again for simple actions, FluentExtensions also increases readability.

Project
FluentExtensions is an open source project that and can be found in github Github Repository.

Installation

There are 4 ways to install FluentExtensions into your project.

1. Install FluentExtensions via NuGet

If you want to include FluentExtensions in your project, you can install it directly from NuGet

To install FluentExtensions, run the following command in the Package Manager Console


PM> Install-Package FluentExtensions.NET
                        

2. Install FluentExtensions via .NET CLI

To install FluentExtensions, run the following command in the Command Prompt Console


> dotnet add package FluentExtensions.NET
                        

3. Install FluentExtensions via adding the package reference to the latest version in C# project file (.csproj), using asterisk in version attribute gets the latest version of the library.

Simply copy and pase the following into your (.csproj) file.


<PackageReference Include="FluentExtensions.NET" Version="*" />
                        

4. Install FluentExtensions from the fresh build

To install FluentExtensions, run the following command in the Command Prompt Console

> Releases