yozepi.ConfigToJson
1.0.1
dotnet add package yozepi.ConfigToJson --version 1.0.1
NuGet\Install-Package yozepi.ConfigToJson -Version 1.0.1
<PackageReference Include="yozepi.ConfigToJson" Version="1.0.1" />
paket add yozepi.ConfigToJson --version 1.0.1
#r "nuget: yozepi.ConfigToJson, 1.0.1"
// Install yozepi.ConfigToJson as a Cake Addin #addin nuget:?package=yozepi.ConfigToJson&version=1.0.1 // Install yozepi.ConfigToJson as a Cake Tool #tool nuget:?package=yozepi.ConfigToJson&version=1.0.1
ConfigToJson
A simple to use extension for converting IConfiguration into JSON
Use: First, add this statement at the top of your c# file.
using ConfigToJson;
Then just take any IConfiguration
instance and convert into a JSON formatted string.
string jsonString = Configuration.ToJsonString();
// It works on sub-configuration as well.
var jsonstring = Configuration.GetSection("nested:sub:config").ToJsonString();
There's a similar extension method for converting IConfiguration
into a NewtonSoft JToken
.
JToken token = Configuration.ToJToken();
// It works on sub-configuration as well.
var token = Configuration.GetSection("nested:sub:config").ToJToken();
So why bother?
DotNet's configuration framework is already so rich. Why would you need to convert configuration into raw JSON? Well, in my case it was because of Akka.Net.
Akka.Net is an amazing framework and if you've never heard of it you should definitely check it out. It has a minor flaw though (in my opinion) in that its configuration is HOCON based - which is incompatible with the dotnet's configuration framework. I suspect this is because Akka.Net is a port of the Java based Akka library.
Then I thought "Hmmm. HOCON is an extension of JSON. my appsettings.json file happens to be JSON." So This library was born. With it I can take full advantage of dotnet's configuration framework withn my Akka.Net applications.
Anyway, That's why I find this library useful. I hope you find a way to make it useful in your own applications as well.
Licensed under Apache License, Version 2.0 so use it all you want.
Product | Versions 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 | 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. |
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration.Abstractions (>= 3.1.0)
- Newtonsoft.Json (>= 10.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.1 | 779 | 8/14/2021 |
0.2.1-alpha | 232 | 8/6/2021 |
0.1.1-alpha | 255 | 8/6/2021 |
0.1.0-alpha | 240 | 8/4/2021 |
Initial release.