ConfigManager 3.0.0

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

// Install ConfigManager as a Cake Tool
#tool nuget:?package=ConfigManager&version=3.0.0

Binaries for the ConfigManager library.
       Visit https://github.com/tejacques/ConfigManager for an overview and usage examples.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  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
3.0.0 3,896 3/30/2014
2.0.1 1,290 1/25/2014
1.1.1 1,194 12/18/2013
1.0.3 1,283 10/18/2013
1.0.2 1,271 9/12/2013
1.0.1 1,223 7/30/2013

Notes:

       Version 3.0.0:
        - *Possibly Breaking Change* Now using Newtonsoft.Json instead of ServiceStack.Text
          upgrade should be smooth for anyone not relying on specific ServiceStack.Text behavior.
          this was done because ServiceStack.Text now requires purchasing license to use.
        - Now supports YAML config files (.yaml)
        - Json Files can be in either .json or .conf format
        - Option to cache or not cache object resulting from deserialization.

       Version 2.0.1:
        - Fix bug where LogException was called without a null check.

       Version 2.0.0:
        - Remove Parsed object from Configuration class
        - GetConfig now returns a copy of the configuration so that the Configuration held by the manager is immutable.
        - Remove NLog Dependency, instead user can provide Log and LogException functions to ConfigManager.

       Version 1.1.1:
        - Include source files and pdbs.

       Version 1.1.0:
        - Add a delegate to retrieve the configuration from a user defined location (ex: read config from a database).
        - Add a delegate to run if the configuration file is newer than the configuration from the user defined location (ex: update database).
        - Do not log an error for a missing configuration file, only if the file existed and failed to read.

       Version 1.0.3:
        - Update dependency version compatibility

       Version 1.0.2:
        - Add a DevMode setting. If true, ConfigManager will first check for config files ending with .dev.conf.
          Useful for having different settings on development.

       Version 1.0.1:
        - Fix a bug in updating files where the key had an incorrect substring check

       Version 1.0.0:
        - File handlers to automatically update config data in the running program
        - Generic functions to retrieve configuration data as a strongly typed object