JorgeSerrano.Json.JsonSnakeCaseNamingPolicy 0.9.0

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

// Install JorgeSerrano.Json.JsonSnakeCaseNamingPolicy as a Cake Tool
#tool nuget:?package=JorgeSerrano.Json.JsonSnakeCaseNamingPolicy&version=0.9.0

⚠ Note

.NET 8 now has built-in support for snake_case and kebab-case JSON naming policies.

Namespace JSON Naming Policies Compatibility

JsonNamingPolicy

Naming policies for System.Text.Json

This GitHub repo contains classes to change the name properties of a JSON into different naming conventions.

JsonSnakeCaseNamingPolicy

This class creates a policy to change the name properties of a JSON into SnakeCase (snake_case) used in some programming languages and APIs.

This code passes the tests that you will find in the corefx SnakeCaseUnitTests of Microsoft

Use

using JorgeSerrano.Json;
...
var options = new JsonSerializerOptions() { PropertyNamingPolicy = new JsonSnakeCaseNamingPolicy() };
var person = new Person() { FirstName = "Jorge", Birthday = DateTime.UtcNow, MyJobCity = "Madrid" };
var json = JsonSerializer.Serialize(person, options);

Result

{"first_name":"Jorge","birthday":"2020-01-03T20:00:59.6991482Z","my_job_city":"Madrid"}

JsonKebabCaseNamingPolicy

This class creates a policy to change the name properties of a JSON into KebabCase (kebab-case).

Use

using JorgeSerrano.Json;
...
var options = new JsonSerializerOptions() { PropertyNamingPolicy = new JsonKebabCaseNamingPolicy() };
var person = new Person() { FirstName = "Jorge", Birthday = DateTime.UtcNow, MyJobCity = "Madrid" };
var json = JsonSerializer.Serialize(person, options);

Result

{"first-name":"Jorge","birthday":"2020-01-03T20:00:59.6991482Z","my-job-city":"Madrid"}

Disclaimer

This library is written by J0rgeSerran0 on GitHub, not by me. I packaged and published it to NuGet just for convenience.

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.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on JorgeSerrano.Json.JsonSnakeCaseNamingPolicy:

Package Downloads
Altairis.Pushover.Client

C#/.NET client for the Pushover.net service web API.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.0 295,476 4/9/2021