CommandLineParserApplicationFriendlyName Property

Gets the friendly name of the application for use in the version information.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public string ApplicationFriendlyName { get; }

Property Value

String
The friendly name of the application.

Remarks

The friendly name is determined by checking for the ApplicationFriendlyNameAttribute attribute first on the arguments type, then on the arguments type's assembly. If neither exists, the AssemblyTitleAttribute is used. If that is not present either, the assembly's name is used.

This name is only used in the output of the automatically created "-Version" attribute.

See Also