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
                    
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="NeoAgi.CommandLine.Extensions.Configuration" Version="1.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NeoAgi.CommandLine.Extensions.Configuration" Version="1.5.0" />
                    
Directory.Packages.props
<PackageReference Include="NeoAgi.CommandLine.Extensions.Configuration" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NeoAgi.CommandLine.Extensions.Configuration --version 1.5.0
                    
#r "nuget: NeoAgi.CommandLine.Extensions.Configuration, 1.5.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.
#:package NeoAgi.CommandLine.Extensions.Configuration@1.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=NeoAgi.CommandLine.Extensions.Configuration&version=1.5.0
                    
Install as a Cake Addin
#tool nuget:?package=NeoAgi.CommandLine.Extensions.Configuration&version=1.5.0
                    
Install as a Cake Tool

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:

  1. configuration.AddOpts<ConfigType>(args, "AppSettings") parses args into the IConfiguration hierarchy using NeoAgi.CommandLine.GetOpts<T>() constrained by ConfigType. At this point Configuration["AppSettings:SomePropertyNameFromConfigType"] will be accessable.
  2. services.Configure<ConfigType>(hostContext.Configuration.GetSection("AppSettings")); injects IOption<ConfigType> into the DI Container using the values set into Configuration[] 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 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. 
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
1.5.0 195 10/9/2023
1.2.1 421 11/29/2021
1.2.0 396 11/13/2021
1.1.1 375 10/20/2021
1.1.0 424 10/20/2021
1.0.0 410 10/17/2021