Settings

Control CLArgs behaviour using Settings2

You can control CLArgs behaviour by providing your custom Settings.

var builder = CommandHostBuilder.Create(commandline);
builder.Configure(settings =>
{
    settings.IgnoreCase           = false;
    settings.IgnoreUnknownOptions = true;
});

For more information on all available settings see Settings2 class.

Last updated