commandlineparser / commandlineparser/commandline

Support for implicit empty string

Aperta
#765 1 commento 0 reazioni 0 assegnatari Vedi su GitHub
Lingua principale
C#
Stelle
4.8k
Fork
478
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

I want to design an api with a bool-like option which can optionally contains a name. Below are my commands I wanted to work with:

``` shell
// 1. Call MyFeature without adding a project
myfeature

// 2. Call MyFeature and add a project with default naming
myfeature --add-project

// 3. Call MyFeature and add a project with a specific name
myfeature --add-project "myprojectname"
```

Below is my options class:

``` csharp
[Verb("myfeature")]
public class MyOptions
{
[Option("add-project", Required = false)]
public string AddProjectName { get; set; }

public bool AddProject => AddProjectName != null;
}
```

My problem is that the 2. solution is not working, because the engine forces the user to set a string arg. In order to set an empty string he has to be give an empty "". But that would not be an intuitive api.

Is there already a solution for this design problem? Can I disable the string-check for this item? I already set "Required" to false.

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.