NetLah.Extensions.Configuration
0.1.0
Prefix Reserved
See the version list below for details.
dotnet add package NetLah.Extensions.Configuration --version 0.1.0
NuGet\Install-Package NetLah.Extensions.Configuration -Version 0.1.0
<PackageReference Include="NetLah.Extensions.Configuration" Version="0.1.0" />
paket add NetLah.Extensions.Configuration --version 0.1.0
#r "nuget: NetLah.Extensions.Configuration, 0.1.0"
// Install NetLah.Extensions.Configuration as a Cake Addin #addin nuget:?package=NetLah.Extensions.Configuration&version=0.1.0 // Install NetLah.Extensions.Configuration as a Cake Tool #tool nuget:?package=NetLah.Extensions.Configuration&version=0.1.0
NetLah.Extensions.Configuration - .NET Library
NetLah.Extensions.Configuration is a library which contains a set of reusable classes for build configuration with environment. These library classes are ConfigurationBuilderBuilder
and CertificateLoader
.
Nuget package
Build Status
Getting started
ConsoleApp
public static void Main(string[] args)
{
var configuration = ConfigurationBuilderBuilder.Create<Program>(args).Build();
var defaultConnectionString = configuration.GetConnectionString("DefaultConnection");
Console.WriteLine($"[TRACE] ConnectionString: {defaultConnectionString}");
}
Full API support
IConfigurationRoot configuration = new ConfigurationBuilderBuilder()
.WithBasePath("C:/App/bin")
.WithCurrentDirectory()
.WithBaseDirectory()
.WithAppSecrets<Program>()
.WithAppSecrets(typeof(Program).Assembly)
.WithEnvironment("Staging")
.WithAddConfiguration(cb => cb.AddIniFile("appsettings.ini", optional: true, reloadOnChange: true))
.WithCommandLines(args)
.Build();
Order of Precedence when Configuring
- Reference
https://devblogs.microsoft.com/premier-developer/order-of-precedence-when-configuring-asp-net-core/
https://docs.microsoft.com/en-us/aspnet/core/fundamentals/configuration/#default-configuration
- Order of Precedence
- Host configuration from environment variables by prefix
DOTNET_
andASPNETCORE_
- appsettings.json using the JSON configuration provider
- appsettings.EnvironmentName.json using the JSON configuration provider
- Other extra configuration sources
- App secrets when the app runs in the
Development
environment - Environment variables using the Environment Variables configuration provider
- Command-line arguments using the Command-line configuration provider
BasePath of configuration files
The application binary folder is default basePath for appsettings.json, appsettings.Production.json,etc. In case want to change current directory as basePath:
var configuration = new ConfigurationBuilderBuilder()
.WithCurrentDirectory()
.Build();
Environment name
Production
environmentName by default if no host environmentName configuration
ConfigurationBuilderBuilder
will detect EnvironmentName
by add configuration environment variables with prefix DOTNET_
and ASPNETCORE_
. If no environment variable set, Production
will use by default. Example of environment variables:
ASPNETCORE_ENVIRONMENT = Development
DOTNET_ENVIRONMENT = Staging
Specifying environmentName during build configuration
Sometime, we cannot set the environmentName using environment variable, or we need different environment configuration build lik in unit test project, we can specific the environmentName.
var configuration = ConfigurationBuilderBuilder.Create<ConfigurationBuilderBuilderTest>()
.WithEnvironment("Testing")
.Build();
Add extra configuration sources
var configuration = ConfigurationBuilderBuilder.Create<Program>()
.WithAddConfiguration(cb => cb.AddIniFile("appsettings.ini", optional: true, reloadOnChange: true))
.WithAddConfiguration(cb => cb.AddXmlFile("appsettings.xml", optional: true, reloadOnChange: true))
.Build();
Or
var configuration = ConfigurationBuilderBuilder.Create<Program>()
.WithAddConfiguration(
cb => cb.AddIniFile("appsettings.ini", optional: true, reloadOnChange: true)
.AddXmlFile("appsettings.xml", optional: true, reloadOnChange: true)
)
.Build();
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. |
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. |
-
.NETStandard 2.1
- Microsoft.Extensions.Configuration.Binder (>= 5.0.0)
- Microsoft.Extensions.Configuration.CommandLine (>= 5.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 5.0.0)
- Microsoft.Extensions.Configuration.Json (>= 5.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 5.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 5.0.0)
- NetLah.Abstractions (>= 0.1.0 && < 1.0.0)
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 |
---|---|---|
1.0.0-rc4 | 64 | 11/18/2024 |
1.0.0-rc3.3 | 200 | 5/30/2024 |
1.0.0-rc3.2 | 93 | 5/14/2024 |
1.0.0-rc3.1 | 60 | 5/13/2024 |
1.0.0-rc2 | 149 | 3/21/2024 |
1.0.0-rc1 | 427 | 1/12/2024 |
0.2.2 | 1,179 | 1/1/2023 |
0.2.2-rc1 | 767 | 9/14/2022 |
0.2.1 | 1,340 | 11/19/2021 |
0.2.0 | 916 | 11/11/2021 |
0.2.0-rc2 | 36,547 | 10/18/2021 |
0.2.0-rc1.5 | 46,660 | 9/29/2021 |
0.2.0-rc1.1 | 13,167 | 9/16/2021 |
0.1.7 | 82,495 | 8/25/2021 |
0.1.6 | 996 | 8/24/2021 |
0.1.5 | 788 | 8/20/2021 |
0.1.4 | 765 | 8/18/2021 |
0.1.3 | 803 | 8/17/2021 |
0.1.2 | 882 | 8/14/2021 |
0.1.1 | 1,436 | 6/7/2021 |
0.1.0 | 973 | 5/11/2021 |