DotNet.MultiSourceConfiguration
0.6.0
See the version list below for details.
dotnet add package DotNet.MultiSourceConfiguration --version 0.6.0
NuGet\Install-Package DotNet.MultiSourceConfiguration -Version 0.6.0
<PackageReference Include="DotNet.MultiSourceConfiguration" Version="0.6.0" />
paket add DotNet.MultiSourceConfiguration --version 0.6.0
#r "nuget: DotNet.MultiSourceConfiguration, 0.6.0"
// Install DotNet.MultiSourceConfiguration as a Cake Addin #addin nuget:?package=DotNet.MultiSourceConfiguration&version=0.6.0 // Install DotNet.MultiSourceConfiguration as a Cake Tool #tool nuget:?package=DotNet.MultiSourceConfiguration&version=0.6.0
Library for reading configuration from multiple sources in .NET. Current sources are in memory properties, app settings file, environment variables and command line arguments. It is also possible to implement your own configuration sources (like database, consul, etcd, etc.)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. 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. |
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DotNet.MultiSourceConfiguration:
Package | Downloads |
---|---|
DotNet.MultiSourceConfiguration.Zookeeper
Zookeeper configuration source for the DotNet.MultiSourceConfiguration library. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.8.0 | 4,689 | 10/8/2019 |
0.7.3 | 583 | 7/2/2019 |
0.7.2 | 586 | 5/28/2019 |
0.7.1 | 703 | 2/1/2019 |
0.7.0 | 1,509 | 11/17/2017 |
0.6.0 | 896 | 11/16/2017 |
0.5.0 | 1,216 | 11/14/2017 |
0.4.1 | 1,937 | 11/2/2017 |
0.4.0 | 1,726 | 7/26/2017 |
0.3.3 | 1,106 | 6/13/2017 |
0.3.2 | 959 | 6/12/2017 |
0.3.1 | 928 | 5/12/2017 |
0.3.0 | 964 | 3/28/2017 |
0.2.1 | 935 | 3/23/2017 |
0.2.0 | 906 | 3/23/2017 |
0.1.1 | 979 | 3/22/2017 |
0.1.0 | 1,715 | 3/22/2017 |
Added new, non nullable, property types: int, long, decimal, double, foat and bool. Added new operation, TryGetStringValue, in order to directly retrieve the string value of a given property name (instead of populating a configuration object). Modified the library to leave not found properties untouched in configuration objects (instead of forcibly setting the default value to that object property. This way users can set default values in the class constructor before populating the configuration object with DotNet.MultiSourceConfiguration and the already set values will not be overwritten.