Version 1.1.62

Date 2025-11-03 (2 days ago)
Downloads 83 downloads
NuGet View on NuGet
GitHub View on GitHub
Target Frameworks .NET Standard 1.1 .NET Standard 1.3 .NET Standard 2.0 .NET 4.5 .NET 4.6 .NET 4.7 .NET 4.8 .NET 5 .NET 6 .NET 7

Installation

Install via NuGet - either via the .NET CLI:

dotnet add package Skybrud.Essentials --version 1.1.62

or the NuGet Package Manager:

Install-Package Skybrud.Essentials -Version 1.1.62

Changelog

  • Fixed issue with EssentialsTime.FromTicks (see 109a493)
    Two of the method overloads would internally parse the ticks into a DateTime instance, but not specify a Kind, in which case this falls back to Unspecified, thereby creating a lot of uncertainty when converting back and forth between time zones. With this commit, the two method overloads will instead use parse the ticks into a DateTimeOffset relative to UTC, and then convert to the time zone specified by the user.