Ridavei.Settings.Registry 4.0.0

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

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

Ridavei.Settings.Registry

Latest release

NuGet Badge Ridavei.Settings.Registry

Builder extension to store settings keys and values in Windows Registry.
To use the HKEY_LOCAL_MACHINE registry base the program needs to run under administration privilages.

Examples of use

using Ridavei.Settings;
using Ridavei.Settings.Interfaces;
using Ridavei.Settings.Registry;

namespace TestProgram
{
    class Program
    {
        public static void Main(string[] args)
        {
            SettingsBuilder builder = SettingsBuilder
                .CreateBuilder()
                //You can call UseRegistryManager(RegistryKeyType.LocalMachine) if you need to use "HKEY_LOCAL_MACHINE"
                .UseRegistryManager();
            using (ISettings settings = builder.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");
            }
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0-windows was computed. 
.NET Framework 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

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
4.0.0 162 4/17/2023
3.0.0 201 4/1/2023
2.0.0 306 11/22/2022
1.0.0.1 404 7/8/2022
1.0.0 370 7/6/2022