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
{{ message }}
This repository was archived by the owner on Apr 27, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: docs/core/generators/application.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,3 +47,11 @@ Generate a dotnet project under the application directory.
47
47
### useNxPluginOpenAPI
48
48
49
49
- (boolean): If using a codegen project, use openapi-generator
50
+
51
+
### args
52
+
53
+
- (array): Additional arguments to pass to the dotnet command. For example: "nx g @nx-dotnet/core:app myapp --args='--no-restore'" Arguments can also be appended to the end of the command using '--'. For example, 'nx g @nx-dotnet/core:app myapp -- --no-restore'.
Copy file name to clipboardExpand all lines: packages/core/src/generators/app/schema.json
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,27 @@
90
90
"useNxPluginOpenAPI": {
91
91
"type": "boolean",
92
92
"description": "If using a codegen project, use openapi-generator"
93
+
},
94
+
"args": {
95
+
"type": "array",
96
+
"description": "Additional arguments to pass to the dotnet command. For example: \"nx g @nx-dotnet/core:app myapp --args='--no-restore'\" Arguments can also be appended to the end of the command using '--'. For example, 'nx g @nx-dotnet/core:app myapp -- --no-restore'.",
0 commit comments