- Support for using a
--
argument to escape argument names for the remaining arguments, or to cancel parsing. This can be enabled usingParseOptions.PrefixTermination
orParseOptionsAttribute.PrefixTermination
. - Ignore unknown arguments by using the new
CommandLineParser.UnknownArgument
event. - The
ValidateEnumValueAttribute
has additional properties to control how enumeration values are parsed:CaseSensitive
,AllowNumericValues
, andAllowCommaSeparatedValues
.- The
EnumConverter
now also checks theValidateEnumValueAttribute.IncludeValuesInErrorMessage
property, if the attribute is present on the argument, so that error messages from the converter and validator are consistent.
- The
- Support for passing a cancellation token to the
CommandManager.RunCommandAsync()
method. Tasks can access this token by implementing theIAsyncCancelableCommand
interface. TheAsyncCommandBase
class provides support as well. - Usage help improvements:
- Support for custom default value formatting, using
CommandLineArgumentAttribute.DefaultValueFormat
. - Add
LineWrappingTextWriter.IndentAfterEmptyLine
andUsageWriter.IndentAfterEmptyLine
properties, which allow for proper formatting of argument descriptions with blank lines using the default usage help format. - Add a footer to the usage help with the
UsageFooterAttribute
attribute. - Some localizable text that could previously only be customized by deriving from the
UsageWriter
class can now also be customized with theLocalizedStringProvider
class, so you only need to derive fromLocalizedStringProvider
to customize all user-facing strings.
- Support for custom default value formatting, using
- Provide helper methods in the
VirtualTerminal
class for writing text with VT formatting to the standard output or error streams. - Provide extension methods for
StandardStream
in theStandardStreamExtensions
class. - Emit a warning if a class isn't using the
GeneratedParserAttribute
when it could, with an automatic code fix to easily apply it.
- Fix an issue where arguments defined by methods could not have aliases.
IMPORTANT: Version 4.0 contains breaking changes. If you are upgrading from version 2.x or 3.x, please check the migration guide.
- Add support for source generation.
- Use the
GeneratedParserAttribute
to determine command line arguments at compile time.- Get errors and warnings for many mistakes.
- Automatically determine the order of positional arguments.
- Use property initializers to set default values that are used in the usage help.
- Allow your application to be trimmed.
- Improved performance.
- Use the
GeneratedCommandManagerAttribute
to determine subcommands at compile time.- Allow an application with subcommands to be trimmed.
- Improved performance.
- Using source generation is recommended unless you are not able to meet the requirements.
- Use the
- Constructor parameters can no longer be used to define command line arguments.
- Converting strings to argument types is now done using Ookii.CommandLine's own
ArgumentConverter
class.- See the migration guide for more information.
- This enables conversion using
ReadOnlySpan<char>
for better performance, makes it easier to implement new converters, provides better error messages for enumeration conversion, and enables the use of trimming (when source generation is used). - For .Net 7 and later, support value conversion using the
ISpanParsable<TSelf>
andIParsable<TSelf>
interfaces.
- Automatically accept any unique prefix of an argument name as an alias.
- Use the
required
keyword in C# 11 and .Net 7.0 to create required arguments. - Support for using properties with
init
accessors (only if they arerequired
). - Value descriptions are now specified using the
ValueDescriptionAttribute
attribute. This attribute is not sealed to allow derived classes that implement localization. - Conveniently set several related options to enable POSIX-like conventions using the
ParseOptions.IsPosix
,CommandOptions.IsPosix
orParseOptionsAttribute.IsPosix
property. - Support for multiple argument name/value separators, with the default now accepting both
:
and=
. - You can now cancel parsing and still return success.
- The remaining unparsed arguments, if parsing was canceled or encountered an error, are available
through the
CommandLineParser.ParseResult
property. - Argument validators used before conversion can implement validation on
ReadOnlySpan<char>
for better performance. - Built-in support for nested subcommands.
- The automatic version argument and command will use the
AssemblyTitleAttribute
if theApplicationFriendlyNameAttribute
was not used. - By default, only usage syntax is shown if a parsing error occurs; the help argument must be used to get full help.
- Exclude the default value from the usage help on a per argument basis with the
CommandLineArgumentAttribute.IncludeDefaultInUsageHelp
property. - Source link integration.
- Various bug fixes and minor improvements.
- .Net Standard 2.0: use the System.Memory package to remove some downlevel-only code.
- There are no changes for the .Net Standard 2.1 and .Net 6.0 assemblies.
- Added an instance
CommandLineParser<T>.ParseWithErrorHandling()
method, which handles errors and displays usage help the same way as the staticParse<T>()
method, but allows access to more information only available if you have an instance. - Added the
CommandLineParser.ParseResult
property, which provides information about errors or which argument canceled parsing, giving detailed failure information to the caller even if theParseWithErrorHandling()
method was used. - Also exposed the same information for subcommands through the
CommandManager.ParseResult
property. LineWrappingTextWriter
improvements- Proper async support; the various
WriteAsync()
andWriteLineAsync()
methods will now call down to the async methods of the base writer for theLineWrappingTextWriter
, and a new methodResetIndentAsync()
is provided. - Add a
Flush()
method overload that allows flushing a non-empty buffer without inserting an extra new line. - Control line wrapping behavior with the
Wrapping
property: disable it, or disable forcibly breaking lines if no suitable white-space character is found. - If the base writer is a
StringWriter
, theLineWrappingTextWriter.ToString()
method now returns the text written to the writer, including text that hasn't been flushed to the base writer yet. - Some minor bug fixes.
- Proper async support; the various
IMPORTANT: Several of the changes in version 3.0 are breaking changes. There are breaking API changes as well as several behavior changes. In general, it's not expected that you'll need to make many changes, unless you were using subcommands or extensively customized the usage help. Please see the information on migrating from Ookii.CommandLine 2.x if you are upgrading an existing application.
- Argument parsing
- Added support for a new parsing mode where arguments can have a
separate long name using the
--
prefix (customizable, of course) and single-character short name using the-
prefix. This allows you to use a parsing style that's similar to common tools, includingdotnet
itself. - Allow automatic name transformation of arguments, value descriptions, and subcommand names so you don't need to use custom names everywhere if you want a different convention for names than you're using for .Net identifiers.
- Added support for argument validation and dependencies.
- Allow the use of types with
public static Parse()
methods or constructors taking a string parameter, even without aTypeConverter
. - You can now customize parsing behavior by applying the
ParseOptionsAttribute
to your class, as an alternative to passingParseOptions
to the staticParse<T>()
method. ParseOptions
is now also used to set options when manually creating aCommandLineParser
instance.- Argument value conversion now defaults to using
CultureInfo.InvariantCulture
. - Added a
Parse()
method overloads that takes arguments fromEnvironment.GetCommandLineArgs()
. - Added a generic
CommandLineParser<T>
helper class, for easier usage when you don't want to use the static helper method. - You can use static methods to define arguments.
- Automatically add
-Help
and-Version
arguments if not defined. - Optionally show a warning when duplicate arguments are supplied.
- Optional support for multi-value arguments that
consume multiple argument tokens without a separator, e.g.
-Value 1 2 3
to assign three values. - Arguments classes can use a constructor parameter to receive the
CommandLineParser
instance they were created with. - Added the ability to customize error messages and other strings.
- Added support for a new parsing mode where arguments can have a
separate long name using the
- Subcommands
- Renamed "shell commands" to "subcommands" because I never liked the old name.
- Completely reworked subcommand support, with a brand new, more powerful and easier to use API.
- Support for asynchronous subcommands.
- Support for subcommand aliases.
- You can now use subcommands from multiple assemblies at once, and apply a filter.
- Automatically add a
version
subcommand if one does not exist.
- Usage help
- Color output support.
- Greatly expanded usage help customization options
with the new
UsageWriter
class, including abbreviated syntax, description list ordering and filtering, the ability to override any string or format, and more. - Arguments and subcommands can be hidden from the usage help.
- Improved detection logic for the application executable name in the usage syntax.
- Arguments that have no description but that have other information not shown in the usage syntax (like aliases, a default value, or validators) will be included in the description list by default.
- Aliases and the default value are now shown in the usage help by default.
- Changed the default format for how aliases are displayed.
- With the static
Parse<T>()
method, you can choose to show no or partial usage help on error.
- Updated and improved documentation.
- More samples with descriptions and explanations.
- Various bug fixes.
- No longer targets .Net Framework 2.0
- Now targets .Net Standard 2.0, .Net Standard 2.1, and .Net 6.0 and later.
- Ookii.CommandLine now comes in a .Net 6.0 version that fully supports nullable reference types (.Net Framework 2.0 and .Net Standard 2.0 versions are also still provided).
- New static
Parse<T>()
helper methods that make parsing command line arguments and printing errors and usage even easier. - Support for customization of the separator between argument names and values.
- Support for customization of the separator between keys and values for dictionary arguments.
- Support for customizing a dictionary argument's key and value
TypeConverter
separately. - Arguments can indicate they cancel parsing to make adding a
-Help
or-?
argument easier. - Some small bug fixes.
- Ookii.CommandLine now comes in both a .Net Framework 2.0 and .Net Standard 2.0 version.
- Added support for alternative names (aliases) for command line arguments.
- An argument’s aliases and default value can be included in the argument description when generating usage.
- Added code snippets.
- Added support for dictionary arguments; these are special multi-value arguments whose values take the form key=value.
- Multi-value arguments can be specified using a read-only property of any collection type (in addition to the previous array support).
- Multi-value properties can optionally use a separator character to allow multiple values to be specified without specifying the argument multiple times.
- Added support for specifying a custom type converter for individual arguments.
- When specifying the default value for an argument defined by a property you can now use any type that can be converted to the argument’s type using its type converter. This makes it possible to define default values for arguments with a type for which there are no literals.
- A CommandLineArgumentException is thrown when the argument type’s constructor or a property setter throws an exception (instead of a TargetInvocationException).
- The CommandLineParser no longer sets the property value for an unspecified argument with a default value of null.
- Shell commands can take their name from the type name.
- Shell commands can use custom argument parsing.
- Various minor bug fixes.
- Improved argument parsing:
- All arguments can be specified by name.
- Support for using whitespace to separate an argument name from its value.
- Support for multiple argument name prefixes.
- Support for using a custom StringComparer for argument name matching (to allow case sensitive or insensitive matching).
- Support for use a custom CultureInfo for argument value conversion.
- Non-positional arguments can be required arguments.
- Properties can be used to define positional arguments.
- More customizable generation of usage help text.
- The new shell commands functionality lets you easily create shell utilities with multiple operations that each uses its own command line arguments.
- The LineWrappingTextWriter class provides support for writing word-wrapped text to any output stream, with greater flexibility than the SplitLines method provided in Ookii.CommandLine 1.0.
- Targets .Net 2.0 for wider applicability.
Ookii.CommandLine 2.0 and newer versions have substantial changes from version 1.0 and are not designed to be backwards compatible. There are changes in argument parsing behavior and API names and usage.
Upgrading an existing project that is using Ookii.CommandLine 1.0 to Ookii.CommandLine 2.0 or newer may require substantial code changes and may change how command lines are parsed.