Skip to content

Commit

Permalink
fix: parameter description (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcfialho authored Jan 30, 2022
1 parent dc6b1fb commit d24c838
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ See more information in [Nuget](https://www.nuget.org/packages/Herald.Template.W
dotnet new herald-api -n ProjectName -o OutputFolder

Options:
-nd|--no-database Put database sample into generated project (Default: false).
-nq|--no-queue Put queue sample into generated project (Default: false).
-ne|--no-externalapi Put external api sample into generated project (Default: false).
-nd|--no-database Removes database sample into generated project (Default: false).
-nq|--no-queue Removes queue sample into generated project (Default: false).
-ne|--no-externalapi Removes external api sample into generated project (Default: false).
```
## Credits
Expand Down
6 changes: 3 additions & 3 deletions content/WebApi/.template.config/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@
]
},
"no-database": {
"description": "Put database sample into generated project.",
"description": "Removes database sample into generated project.",
"type": "parameter",
"dataType": "bool",
"defaultValue": "false"
},
"no-queue": {
"description": "Put queue sample into generated project.",
"description": "Removes queue sample into generated project.",
"type": "parameter",
"dataType": "bool",
"defaultValue": "false"
},
"no-externalapi": {
"description": "Put external api sample into generated project.",
"description": "Removes external api sample into generated project.",
"type": "parameter",
"dataType": "bool",
"defaultValue": "false"
Expand Down

0 comments on commit d24c838

Please sign in to comment.