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
The option set as currently defined does include single character variants of the options (e.g., -b for broker). Suggested fix is to replace current option set definition in Configuration.cs with:
var options = new OptionSet
{
{
"b|broker=", val => { BrokerUrl = val; }
},
{
"t|token=", val => { Token = val; }
},
{
"l|log=", val => { LogLevel = LogLevel.ParseLogLevel(val); }
}
};
The text was updated successfully, but these errors were encountered:
The option set as currently defined does include single character variants of the options (e.g., -b for broker). Suggested fix is to replace current option set definition in Configuration.cs with:
The text was updated successfully, but these errors were encountered: