NeoAgi.CommandLine.Extensions.Configuration
1.5.0
dotnet add package NeoAgi.CommandLine.Extensions.Configuration --version 1.5.0
NuGet\Install-Package NeoAgi.CommandLine.Extensions.Configuration -Version 1.5.0
<PackageReference Include="NeoAgi.CommandLine.Extensions.Configuration" Version="1.5.0" />
<PackageVersion Include="NeoAgi.CommandLine.Extensions.Configuration" Version="1.5.0" />
<PackageReference Include="NeoAgi.CommandLine.Extensions.Configuration" />
paket add NeoAgi.CommandLine.Extensions.Configuration --version 1.5.0
#r "nuget: NeoAgi.CommandLine.Extensions.Configuration, 1.5.0"
#:package NeoAgi.CommandLine.Extensions.Configuration@1.5.0
#addin nuget:?package=NeoAgi.CommandLine.Extensions.Configuration&version=1.5.0
#tool nuget:?package=NeoAgi.CommandLine.Extensions.Configuration&version=1.5.0
NeoAgi.CommandLine.Extensions.Configuration
Emulation of CommandLineParser intending to work more at home in a GenericHost World
Default Behavior
The following is an example to load NeoAgi.CommandLine into a Generic Host provider (Web or Console):
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
public class Program
{
public static void Main(string[] args)
{
try
{
CreateHostBuilder(args).Build().Run();
}
catch (CommandLineOptionParseException ex)
{
foreach(var option in ex.OptionsWithErrors)
{
Console.WriteLine($"{option.Option.FriendlyName} - {option.Reason.ToString()}");
}
}
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureAppConfiguration(configuration =>
{
configuration.Sources.Clear();
configuration.AddJsonFile("appsettings.json", optional: false);
configuration.AddOpts<PrunerConfig>(args, "AppSettings", outputStream: Console.Out);
// Note: outputStream is only required if capturing the output of the parser is desired
})
.ConfigureServices((hostContext, services) =>
{
services.Configure<ConfigType>(hostContext.Configuration.GetSection("AppSettings"));
services.AddHostedService<Worker>();
});
}
T
must be a valid type that works with NeoAgi.CommandLine.GetOpts<T>()
. The current API requires two calls to propery work as expected:
configuration.AddOpts<ConfigType>(args, "AppSettings")
parsesargs
into the IConfiguration hierarchy usingNeoAgi.CommandLine.GetOpts<T>()
constrained byConfigType
. At this pointConfiguration["AppSettings:SomePropertyNameFromConfigType"]
will be accessable.services.Configure<ConfigType>(hostContext.Configuration.GetSection("AppSettings"));
injectsIOption<ConfigType>
into the DI Container using the values set intoConfiguration[]
above.
services.Configure
is only necessary if injecting into the DI container is desired.
Configuration Examples
The example above assumes the following setup:
appsettings.json
{
"AppSettings": {
"FileLocation": "Default",
"Category": "Default"
}
}
ConfigType.cs
public class ConfigType
{
[Option(FriendlyName = "File Location", ShortName = "l", LongName = "location", Description = "Path of the File to Parse", Required = true)]
public string FileLocation { get; set; } = string.Empty;
[Option(FriendlyName = "Category", ShortName = "c", LongName = "category", Description = "Name of the Category", Required = false)]
public string Category { get; set; } = string.Empty;
}
Load Order
As appsettings.json is loaded first, the IOption<ConfigType> loaded into the DI container will output Default
for FileLocation
if configuration.AddOpts<ConfigType>(args, "AppSettings");
is omitted. Once added FileLocation
will parse the --location
or -l
parameter provided to the command line overriding what is stored in appsettings.json.
This behavior is exactly like netcore default Configuration. The call to configuration.AddOpts<T>(string[], string)
can be used as a direct replacement to AddCommandLine(string[])
, and can be reordered to have Environment Variables or other configuration providers to override symbols loaded in if desired as long as the namespace injected into Configuration is maintained (e.g. Pay close attention to how Configuration.GetSection("foo")
is used).
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 7.0.0)
- NeoAgi.CommandLine (>= 1.5.0)
-
net7.0
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 7.0.0)
- NeoAgi.CommandLine (>= 1.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.