Samhammer.Options
6.0.0
See the version list below for details.
dotnet add package Samhammer.Options --version 6.0.0
NuGet\Install-Package Samhammer.Options -Version 6.0.0
<PackageReference Include="Samhammer.Options" Version="6.0.0" />
paket add Samhammer.Options --version 6.0.0
#r "nuget: Samhammer.Options, 6.0.0"
// Install Samhammer.Options as a Cake Addin #addin nuget:?package=Samhammer.Options&version=6.0.0 // Install Samhammer.Options as a Cake Tool #tool nuget:?package=Samhammer.Options&version=6.0.0
Samhammer.Options
Usage
How to add this to your project:
- reference this package to your project: https://www.nuget.org/packages/Samhammer.Options/
- call ResolveOptions on the IServiceCollection with IConfiguration container
services.ResolveOptions(Configuration);
How to register options
- add [Option] attribute to your Options class
- by default options are loaded from appsettings section with same name as the class
[Option]
public class ExampleOptions{
public string MyKey { get; set; }
}
appsettings.json
"ExampleOptions": {
"MyKey": "1234"
}
How to register options loaded from other section
It might be that the section name is not the same as your class name.
[Option("Test")]
public class ExampleOptions{
public string ApiKey { get; set; }
public string ApiUrl { get; set; }
}
appsettings.json
"Test": {
"ApiKey": "1234",
"ApiUrl": "http://api.my.de"
}
How to register options loaded from root
Some options may be defined in the root of appsettings and not inside a section.
[Option(true)]
public class RootOptions {
public string RootUrl { get; set; }
}
appsettings.json
"RootUrl": "http://api.my.de"
How to register named options
It is possible to load multiple options of the same type, but with different name.
public IOptionsSnapshot<ApiOptions> ApiOptions { get; set; }
var apiOptions1 = ApiOptions.Get("api1");
var apiOptions2 = ApiOptions.Get("api2");
[Option("api1", IocName = "api1")]
[Option("api2", IocName = "api2")]
public class ApiOptions
{
public string ApiKey { get; set; }
}
appsettings.json
"api1": {
"ApiKey": "1234",
"ApiUrl": "http://api.my.de"
}
"api2": {
"ApiKey": "6789",
"ApiUrl": "http://api2.my.de"
}
Configuration
Starting with version 3.1.5 all customizations needs to be done with the options action.
The registrations to servicecollection will no longer be used cause we dont want to use ioc to setup ioc. @see also https://docs.microsoft.com/de-de/dotnet/core/compatibility/2.2-3.1#hosting-generic-host-restricts-startup-constructor-injection
How to enable logging?
By default the project will not do any logging, but you can activate it. This will require that you provide an ILoggerFactory from Microsoft.Extensions.Logging.
Sample with microsoft console logger.
var loggerFactory = LoggerFactory.Create(builder => builder.AddConsole().SetMinimumLevel(LogLevel.Debug));
services.ResolveOptions(Configuration, options => options.SetLogging(loggerFactory));
Sample with serilog logger. (you need to setup serilog before)
services.ResolveOptions(Configuration, options => options.SetLogging(new SerilogLoggerFactory()));
How to change assemly resolving strategy?
By default the project will only resolve types of project assemblies, but not on packages or binaries. But you can replace the default strategy with your own implementation.
services.ResolveOptions(Configuration, options => options.SetStrategy(new MyAssemblyResolvingStrategy()));
Contribute
How to publish package
- Create a tag and let the github action do the publishing for you
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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. 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.0
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
- Microsoft.Extensions.DependencyModel (>= 6.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.0)
- Samhammer.Options.Abstractions (>= 6.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.