Xtensible.Time.Clock
1.1.0
dotnet add package Xtensible.Time.Clock --version 1.1.0
NuGet\Install-Package Xtensible.Time.Clock -Version 1.1.0
<PackageReference Include="Xtensible.Time.Clock" Version="1.1.0" />
paket add Xtensible.Time.Clock --version 1.1.0
#r "nuget: Xtensible.Time.Clock, 1.1.0"
// Install Xtensible.Time.Clock as a Cake Addin
#addin nuget:?package=Xtensible.Time.Clock&version=1.1.0
// Install Xtensible.Time.Clock as a Cake Tool
#tool nuget:?package=Xtensible.Time.Clock&version=1.1.0
An easy to use mockable clock. Pass WallClock
to your services in production/dev code and use MockClock
in unit tests; or, if you don't want to pass around a clock, do Clock.Default = new MockClock();
in your unit tests.
Also includes useful rounding extension (RoundUp
, RoundDown
, and RoundNearest
) that can be used on any DateTime
or DateTimeOffset
, including the time that comes from Clock
.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.0 netstandard1.1 netstandard1.2 netstandard1.3 netstandard1.4 netstandard1.5 netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Universal Windows Platform | uap uap10.0 |
Windows Phone | wp8 wp81 wpa81 |
Windows Store | netcore netcore45 netcore451 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 1.0
- NETStandard.Library (>= 1.6.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Xtensible.Time.Clock:
Package | Downloads |
---|---|
TableStorage.Abstractions.POCO
A repository wrapper for Azure Table Storage that uses POCOs (Plain Old CLR Objects) instead of objects that implemeent ITableEntity. The Azure Storage SDK requires that objects that it works with to implement the ITableEntity interface. This puts us into one of two places that are often not desirable: You implement the ITableEntity interace, or inherit from TableEntity. This is easy, but now you've got a leaky abstraction, as well as properties that won't make much sense in your domain (e.g. instead of a UserId, you've now got a RowKey, of the wrong type), or you have fields that are out of place, like ETag and Timestamp. You create DTOs to save to ship data back and forth from the domain to Table Storage. This is a common style, but often is overkill, especially if we're just looking for a simple abstraction on top of Azure Table Storage. This simple library seeks to take care of the mapping for us, so that you can continue to write your domain objects as POCOs, while still being able to leverage the Azure Storage SDK. The library will convert simple properties to fields in Azure Table Storage. Complex types will serialize as json. |
|
Xtensible.TusDotNet.Azure
An Azure Blob Storage extension for tusdotnet; .NET's most popular implementation of the tus protocol. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Added rounding functionality: round up, round down, round nearest