Configs 2.0.5
dotnet add package Configs --version 2.0.5
NuGet\Install-Package Configs -Version 2.0.5
<PackageReference Include="Configs" Version="2.0.5" />
paket add Configs --version 2.0.5
#r "nuget: Configs, 2.0.5"
// Install Configs as a Cake Addin #addin nuget:?package=Configs&version=2.0.5 // Install Configs as a Cake Tool #tool nuget:?package=Configs&version=2.0.5
Configs
https://www.nuget.org/packages/Configs/
A simple way to save the configurations/settings of a C# app as a json file.
The json file(s) is saved in AppData/Local/{YourAppName} and there is currently no way to change that.
If you have any questions or suggestions you can post them in the discussions section.
How to use
Before we start, install the package from NuGet.
This package uses Newtonsoft.Json and the idea is to make a class that's going to be used as the model for the configuration file.
Setup
Make a class that inherits from ConfigsTools. This class is the model for your configurations file, so it details how the json file is going to look like. Model example:
class AppConfigs : ConfigsTools
{
public AppConfigs()
{
ImportantStuff = new List<ImportantThing>();
}
// This attribute is for Newtonsoft.Json and isn't needed but recommended
[JsonProperty("activated", Required = Required.AllowNull)]
public bool Activated { get; set; }
[JsonProperty("randomString", Required = Required.Default)]
public string RandomString { get; set; }
[JsonProperty("importantStuff", Required = Required.AllowNull)]
public List<ImportantThing> ImportantStuff { get; set; }
// You can add methods that you can use after loading the config file
public void ChangeFirstThing()
{
ImportantStuff[0].OwnerName = "Slim Shady";
}
}
Pretty much anything supported by Newtonsoft.Json and is serializable can be used in this model. You can of course make multiple models to have multiple configurations files. By default the name of the json file is the name of model/class.
Usage
Getting the file's values
// Get the current app configurations from the json configurations file.
AppConfigs appConfigs = ConfigsTools.GetConfigs<AppConfigs>();
// Get a value from the configurations file.
bool appConfigActivated = appConfigs.Activated;
Editing and saving the file
// Change a value.
appConfigs.RandomString = "this text is going to be saved in the json file";
// Add an object to a list.
appConfigs.ImportantStuff.Add(new ImportantThing("Elias Youssef"));
// Use a method that is inside the model
appConfigs.ChangeFirstThing();
// Save the file.
appConfigs.Save();
Result
{
"activated": false,
"randomString": "this text is going to be saved in the json file",
"importantStuff": [
{
"OwnerName": "Slim Shady"
}
]
}
Window Settings icon icon by Icons8
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
.NET Framework | net48 is compatible. 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. |
-
.NETFramework 4.8
- LocalAppDataFolder (>= 1.0.4)
- Newtonsoft.Json (>= 13.0.1)
-
.NETStandard 2.1
- LocalAppDataFolder (>= 1.0.4)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Minor code cleanup.