Info
Version: | 1.2.0 |
Author(s): | kzu |
Last Update: | Sunday, July 7, 2024 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/dotnetconfig/dotnet-config |
NuGet Url: | https://www.nuget.org/packages/DotNetConfig |
Install
Install-Package DotNetConfig
dotnet add package DotNetConfig
paket add DotNetConfig
DotNetConfig Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Usage:
var config = Config.Build();
var value = config.GetString("section", "subsection", "variable");
// Setting values
config
.SetString("section", "subsection", "variable", value)
.SetBoolean("section", "subsection", "enabled", true);.