You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we take the example as below, both properties start with S and no custom flag alias are defined. For this case, s is being generated as the short flag alias for both the properties.
publicclassProjectionInput{[Description("If specified, only execute against the named Marten store. Does not apply with only one store")]publicstringStoreFlag{get;set;}[Description("If specified, use this shard timeout value for daemon")]publicstringShardTimeoutFlag{get;set;}}
I think for these cases, we should only add a long flag and ignore short flags. The workaround is to explicitly define the flag alias.
The text was updated successfully, but these errors were encountered:
If we take the example as below, both properties start with
S
and no custom flag alias are defined. For this case,s
is being generated as the short flag alias for both the properties.I think for these cases, we should only add a long flag and ignore short flags. The workaround is to explicitly define the flag alias.
The text was updated successfully, but these errors were encountered: