Shadow.Quack.Json 1.4.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Shadow.Quack.Json --version 1.4.3
NuGet\Install-Package Shadow.Quack.Json -Version 1.4.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="Shadow.Quack.Json" Version="1.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Shadow.Quack.Json --version 1.4.3
#r "nuget: Shadow.Quack.Json, 1.4.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 Shadow.Quack.Json as a Cake Addin
#addin nuget:?package=Shadow.Quack.Json&version=1.4.3

// Install Shadow.Quack.Json as a Cake Tool
#tool nuget:?package=Shadow.Quack.Json&version=1.4.3

Shadow Quack JSON

This package allows the easy population of values directly from a JSON string to a dynamically implemented immutable interface with the help of the base Shadow Quack package.

This means that there is almost no effort in deserialising from JSON to an interface with no need for concrete implementations or additional code.

public interface IJsonProxyTestInterface
    {
        bool Boolean { get; }
        decimal DecimalNumber { get; }
        int Number { get; }
        IEnumerable<int> Numbers { get; }
        IEnumerable<string> Strings { get; }
        string Name { get; }
        string Type { get; }
    }
JsonProxy input = "{\"boolean\":true}";
var result = Duck.Implement<IJsonProxyTestInterface>(input);
var input = "{\"number\":1, \"decimalNumber\":1.6}";
var result = Duck.Implement<IJsonProxyTestInterface>((JsonProxy) input);
var result = Duck.Implement<IJsonProxyTestInterface>((JsonProxy) "{\"numbers\":[1,2,3,4,5]}");
JsonProxy input = "{\"name\":\"value\",\"type\":\"value2\" }";
var result = Duck.Implement<IJsonProxyTestInterface>(input);

This ability has applications within unit tests, to reduce the number of mock data objects, required, and within production code to read in/translate configuration and JSON data without the need for a class implementation.

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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  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 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 Shadow.Quack.Json:

Package Downloads
Quack.Api

Implementation of generic JsonConverter and JsonConvertorFactory to allow the use of Interfaces in ASP .Net API calls

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.7 3,116 4/5/2022
1.4.6 417 3/23/2022
1.4.5 809 1/30/2022
1.4.4 431 1/20/2022
1.4.3 584 12/5/2021
1.4.2 528 9/11/2021
1.4.1 460 9/10/2021
1.4.0 467 6/18/2021
1.3.1 460 5/27/2021
1.3.0 436 5/24/2021
1.2.2 400 4/23/2021
1.2.1 451 4/17/2021
1.2.0 447 4/17/2021
1.1.0 388 4/14/2021
1.0.0 402 3/29/2021

Udated Dependencies