v1.1.62
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 aDateTimeinstance, but not specify aKind, in which case this falls back toUnspecified, 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 aDateTimeOffsetrelative to UTC, and then convert to the time zone specified by the user.