Ridavei.Settings 1.0.1.1

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

// Install Ridavei.Settings as a Cake Tool
#tool nuget:?package=Ridavei.Settings&version=1.0.1.1

Ridavei.Settings

What is Settings?

Ridavei.Settings is a cross-platform library created to ease getting and setting values in settings manager.
For caching it uses MemoryCache.Default.
Classes implement the IDisposable interface to dispose objects that are created by the extensions.

Examples in using Settings

Get settings and change and retrieve its values.

using Ridavei.Settings;
using Ridavei.Settings.Interface;

namespace TestProgram
{
    class Program
    {
        public static void Main(string[] args)
        {
            using (ISettings settings = SettingsBuilder.CreateBuilder())
            {
                settings
                    .SetManager(YOUR_MANAGER_CLASS)
                    .GetSettings("DictionaryName");

                //You can use settings.Get("ExampleKey", "DefaultValue") if you want to retrieve the default value if the key doesn't exists.
                string value = settings.Get("ExampleKey");
                settings.Set("AnotherKey", "NewValue");
            }
        }
    }
}

Get all keys with their values from settings.

using System.Collections.Generic;

using Ridavei.Settings;
using Ridavei.Settings.Interface;

namespace TestProgram
{
    class Program
    {
        public static void Main(string[] args)
        {
            using (ISettings settings = SettingsBuilder.CreateBuilder())
            {
                settings
                    .SetManager(YOUR_MANAGER_CLASS)
                    .GetSettings("DictionaryName");
                    
                //Returns the IReadOnlyDictionary to prevent from value changing.
                IReadOnlyDictionary<string, string> dict = settings.GetAll();
            }
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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. 
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Ridavei.Settings:

Package Downloads
Ridavei.Settings.InMemory

Builder extension to store settings keys and values in a Dictionary.

Ridavei.Settings.Registry

Builder extension to store settings keys and values in Windows Registry.

Ridavei.Settings.DbAbstractions

Abstract classes for manager and settings retriever used to connect to the database.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.0.0 247 4/17/2023
3.0.1 264 4/7/2023
3.0.0 265 4/1/2023
2.0.0.3 461 1/5/2023
2.0.0.2 305 11/22/2022
2.0.0.1 810 11/19/2022
2.0.0 300 11/18/2022
1.0.1.3 802 7/8/2022
1.0.1.2 784 7/6/2022
1.0.1.1 403 7/6/2022
1.0.1 407 7/6/2022