holonsoft.FluentDateTime 2.1.1

dotnet add package holonsoft.FluentDateTime --version 2.1.1
                    
NuGet\Install-Package holonsoft.FluentDateTime -Version 2.1.1
                    
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="holonsoft.FluentDateTime" Version="2.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="holonsoft.FluentDateTime" Version="2.1.1" />
                    
Directory.Packages.props
<PackageReference Include="holonsoft.FluentDateTime" />
                    
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 holonsoft.FluentDateTime --version 2.1.1
                    
#r "nuget: holonsoft.FluentDateTime, 2.1.1"
                    
#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.
#:package holonsoft.FluentDateTime@2.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=holonsoft.FluentDateTime&version=2.1.1
                    
Install as a Cake Addin
#tool nuget:?package=holonsoft.FluentDateTime&version=2.1.1
                    
Install as a Cake Tool

<img src="/src/icon.png" height="30px"> FluentDateTime

new in v2.1.1

  • support for net8, net9, net10
  • older net versions are not supported anymore

at a glance

Allows cleaner DateTime expressions and operations.

Inspired by Ruby DateTime Extensions

Usage

Here is some examples of use cases

// DateTime operations
DateTime.Now  - 1.Weeks() - 3.Days() + 14.Minutes()
DateTime.Now  + 5.Years()

// Relative DateTime evaluations
3.Days().Ago()
2.Days().Since(DateTime.Now)

// Fluent DateTime estimations
DateTime.Now.NextDay()
DateTime.Now.NextYear()
DateTime.Now.PreviousYear()
DateTime.Now.WeekAfter()
DateTime.Now.Midnight()
DateTime.Now.Noon()

// Current DateTime manipulation
DateTime.Now.SetTime(11, 55, 0)

See Unit Tests in the project for more details.

Icon

Calendar from The Noun Project

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on holonsoft.FluentDateTime:

Package Downloads
holonsoft.FastProtocolConverter

Reflection based fast protocol converter: Converts raw bytes (e. g. from a hardware device) data to an instance of a class or vice versa

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.1 652 12/1/2025
1.6.1 1,576 11/30/2021
1.4.1.1 1,346 6/6/2021 1.4.1.1 is deprecated because it is no longer maintained.

This is a fork from the famous https://github.com/FluentDateTime/FluentDateTime, ported to some more and newer framework versions ... and a lot of new stuff :-)