NodaTime.Serialization.ServiceStackText 3.1.3

dotnet add package NodaTime.Serialization.ServiceStackText --version 3.1.3
NuGet\Install-Package NodaTime.Serialization.ServiceStackText -Version 3.1.3
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="NodaTime.Serialization.ServiceStackText" Version="3.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NodaTime.Serialization.ServiceStackText --version 3.1.3
#r "nuget: NodaTime.Serialization.ServiceStackText, 3.1.3"
#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.
// Install NodaTime.Serialization.ServiceStackText as a Cake Addin
#addin nuget:?package=NodaTime.Serialization.ServiceStackText&version=3.1.3

// Install NodaTime.Serialization.ServiceStackText as a Cake Tool
#tool nuget:?package=NodaTime.Serialization.ServiceStackText&version=3.1.3

NodaTime.Serialization.ServiceStackText

ServiceStack.Text JSON serialization support for NodaTime v2. This library will work with v5.0 and later versions of ServiceStack.Text.

Typical Setup

DateTimeZoneProviders.Tzdb
  .CreateDefaultSerializersForNodaTime()
  .ConfigureSerializersForNodaTime();

Optional Setup

There are static extension methods to allow for optional fluent configuration.

Use Iso Interval Serializer

DateTimeZoneProviders.Tzdb.CreateDefaultSerializersForNodaTime()
  .WithIsoIntervalSerializer()
  .ConfigureSerializersForNodaTime();

Use Iso Period Serializer

DateTimeZoneProviders.Tzdb.CreateDefaultSerializersForNodaTime()
  .WithNormalizingIsoPeriodSerializer()
  .ConfigureSerializersForNodaTime();

One-Off Serializer Setup

//You could create you own serializer by implementing IServiceStackSerializer<T>
NodaSerializerDefinitions.LocalTimeSerializer.ConfigureSerializer();

Alternatively, you can create your own implementation of INodaSerializerSettings to suit your specific needs.

Default Serializers

The SerivceStack.Text serializer uses the same default serialization formats as those used in the Json.NET serializers. You can optionally change the Interval serializer to use the ISO 8601 Interval spec.

Notes

  • Serializer setup should only occur once in your application root.
  • Serialization setup should occur before any serialization occurs with ServiceStack.Text or there may be undesirable behavior.
  • If using with ServiceStack, serializer setup should occur before Init of the AppHost.
  • For Value types, this will also setup the nullable serializer for that value type.
  • Since this is a custom serializer for ServiceStack.Text, calls to JsConfig.Reset() will remove the custom serializers.

Using the Code

Continuous Integration

JetBrains TeamCity CI

Special Thanks to JetBrains for hosting this project!

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on NodaTime.Serialization.ServiceStackText:

Package Downloads
EcEnglish.Api.Client

Client library for api.ecenglish.com

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.3 199,209 12/5/2019
3.0.0.43813 90,918 5/2/2018
2.0.2.38544 23,981 4/27/2017
1.2.18 273,169 7/13/2015
1.2.17 12,911 6/10/2014
1.2.8 1,224 3/4/2014
1.2.6 1,150 2/27/2014

Added support for AnnualDate.
     Remove support for .Net Standard 1.3