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
For the code below, the helptext is quite happy to list both "abc" options. It would be desirable to generate a run-time warning error.
public class CommonOptions
{
[Option("abc")]
public string X {get;set;}
}
public class DerivedOptions :CommonOptions
{
[Option("abc")]
public string Y {get;set;}
}
The text was updated successfully, but these errors were encountered:
For the code below, the helptext is quite happy to list both "abc" options. It would be desirable to generate a run-time warning error.
The text was updated successfully, but these errors were encountered: