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
When you call the FormatCommandLine DateTime and DateTime? are not formatted correctly (if you feed the generated string back to the CommandLine it shows an error)
internal class Options
{
[Option(
longName: "start",
Default = null,
HelpText = "Some help text"
)]
public DateTime? Start { get; set; }
}
Formatted date looks something like this for me: 14/08/2019 09:51:12
There seem to be missing " quotations around it (or a T between the date and the time) also the formatting of the date is wrong, should be 2019-08-14
The text was updated successfully, but these errors were encountered:
When you call the FormatCommandLine DateTime and DateTime? are not formatted correctly (if you feed the generated string back to the CommandLine it shows an error)
Formatted date looks something like this for me: 14/08/2019 09:51:12
There seem to be missing " quotations around it (or a T between the date and the time) also the formatting of the date is wrong, should be 2019-08-14
The text was updated successfully, but these errors were encountered: