-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(repo): docs generator prints options
- Loading branch information
1 parent
a7828c5
commit bddc5b5
Showing
25 changed files
with
398 additions
and
83 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# app | ||
|
||
## NxDotnet Application Generator | ||
|
||
## Options | ||
|
||
### name (string) | ||
|
||
### tags (string) | ||
|
||
Add tags to the project (used for linting) | ||
|
||
### directory (string) | ||
|
||
A directory where the project is placed | ||
|
||
### template (string) | ||
|
||
The template to instantiate when the command is invoked. Each template might have specific options you can pass. | ||
|
||
### language (string) | ||
|
||
Which language should the project use? | ||
|
||
### testTemplate (string) | ||
|
||
Which template should be used for creating the tests project? | ||
|
||
### skipOutputPathManipulation (boolean) | ||
|
||
Skip XML changes for default build path |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# init | ||
|
||
## Initialize NxDotnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# lib | ||
|
||
## NxDotnet Library Generator | ||
|
||
## Options | ||
|
||
### name (string) | ||
|
||
### tags (string) | ||
|
||
Add tags to the project (used for linting) | ||
|
||
### directory (string) | ||
|
||
A directory where the project is placed | ||
|
||
### template (string) | ||
|
||
The template to instantiate when the command is invoked. Each template might have specific options you can pass. | ||
|
||
### language (string) | ||
|
||
Which language should the project use? | ||
|
||
### testTemplate (string) | ||
|
||
Which template should be used for creating the tests project? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# nuget-reference | ||
|
||
## Options | ||
|
||
### project (string) | ||
|
||
### packageName (string) | ||
|
||
Which package should be added? | ||
|
||
### version (string) | ||
|
||
The package version to add. | ||
|
||
### framework (string) | ||
|
||
Adds a package reference only when targeting a specific framework. | ||
|
||
### packageDirectory (string) | ||
|
||
The directory where to restore the packages. The default package restore location is %userprofile%\.nuget\packages on Windows and ~/.nuget/packages on macOS and Linux. For more information, see [Managing the global packages, cache, and temp folders in NuGet](https://docs.microsoft.com/en-us/nuget/consume-packages/managing-the-global-packages-and-cache-folders). | ||
|
||
### prerelease (boolean) | ||
|
||
Allows prerelease packages to be installed. Available since .NET Core 5 SDK | ||
|
||
### source (string) | ||
|
||
The URI of the NuGet package source to use during the restore operation. | ||
|
||
### noRestore (boolean) | ||
|
||
Adds a package reference without performing a restore preview and compatibility check. | ||
|
||
### allowVersionMismatch (boolean) | ||
|
||
Ignores single version principle for this package across all apps in the workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# project-reference | ||
|
||
## NxDotnet Application Generator | ||
|
||
## Options | ||
|
||
### project (string) | ||
|
||
Host project | ||
|
||
### reference (string) | ||
|
||
Source project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# restore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# sync |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# app | ||
|
||
## NxDotnet Application Generator | ||
|
||
## Options | ||
|
||
### name (string) | ||
|
||
### tags (string) | ||
|
||
Add tags to the project (used for linting) | ||
|
||
### directory (string) | ||
|
||
A directory where the project is placed | ||
|
||
### template (string) | ||
|
||
The template to instantiate when the command is invoked. Each template might have specific options you can pass. | ||
|
||
### language (string) | ||
|
||
Which language should the project use? | ||
|
||
### testTemplate (string) | ||
|
||
Which template should be used for creating the tests project? | ||
|
||
### skipOutputPathManipulation (boolean) | ||
|
||
Skip XML changes for default build path |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# init | ||
|
||
## Initialize NxDotnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# lib | ||
|
||
## NxDotnet Library Generator | ||
|
||
## Options | ||
|
||
### name (string) | ||
|
||
### tags (string) | ||
|
||
Add tags to the project (used for linting) | ||
|
||
### directory (string) | ||
|
||
A directory where the project is placed | ||
|
||
### template (string) | ||
|
||
The template to instantiate when the command is invoked. Each template might have specific options you can pass. | ||
|
||
### language (string) | ||
|
||
Which language should the project use? | ||
|
||
### testTemplate (string) | ||
|
||
Which template should be used for creating the tests project? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# nuget-reference | ||
|
||
## Options | ||
|
||
### project (string) | ||
|
||
### packageName (string) | ||
|
||
Which package should be added? | ||
|
||
### version (string) | ||
|
||
The package version to add. | ||
|
||
### framework (string) | ||
|
||
Adds a package reference only when targeting a specific framework. | ||
|
||
### packageDirectory (string) | ||
|
||
The directory where to restore the packages. The default package restore location is %userprofile%\.nuget\packages on Windows and ~/.nuget/packages on macOS and Linux. For more information, see [Managing the global packages, cache, and temp folders in NuGet](https://docs.microsoft.com/en-us/nuget/consume-packages/managing-the-global-packages-and-cache-folders). | ||
|
||
### prerelease (boolean) | ||
|
||
Allows prerelease packages to be installed. Available since .NET Core 5 SDK | ||
|
||
### source (string) | ||
|
||
The URI of the NuGet package source to use during the restore operation. | ||
|
||
### noRestore (boolean) | ||
|
||
Adds a package reference without performing a restore preview and compatibility check. | ||
|
||
### allowVersionMismatch (boolean) | ||
|
||
Ignores single version principle for this package across all apps in the workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# project-reference | ||
|
||
## NxDotnet Application Generator | ||
|
||
## Options | ||
|
||
### project (string) | ||
|
||
Host project | ||
|
||
### reference (string) | ||
|
||
Source project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# restore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# sync |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# core | ||
|
||
## Generators | ||
|
||
### [lib](./generators/lib.md) | ||
|
||
nx-dotnet generator | ||
|
||
### [app](./generators/app.md) | ||
|
||
Generate a new C# project. | ||
|
||
### [project-reference](./generators/project-reference.md) | ||
|
||
Adds a reference from one project to another. | ||
|
||
### [init](./generators/init.md) | ||
|
||
init generator | ||
|
||
### [sync](./generators/sync.md) | ||
|
||
sync generator | ||
|
||
### [nuget-reference](./generators/nuget-reference.md) | ||
|
||
nuget-reference generator | ||
|
||
### [restore](./generators/restore.md) | ||
|
||
Restores NuGet packages and .NET tools used by the workspace | ||
|
||
## Executors | ||
|
||
### [build](./executors/build.md) | ||
|
||
build executor | ||
|
||
### [serve](./executors/serve.md) | ||
|
||
serve executor | ||
|
||
### [test](./executors/test.md) | ||
|
||
test executor | ||
|
||
### [publish](./executors/publish.md) | ||
|
||
publish executor | ||
|
||
### [format](./executors/format.md) | ||
|
||
Formats and lints a project using the dotnet-format tool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# typescript |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema", | ||
"executors": { | ||
"build": { | ||
"implementation": "./src/executors/build/executor", | ||
"schema": "./src/executors/build/schema.json", | ||
"description": "build executor" | ||
} | ||
// "build": { | ||
// "implementation": "./src/executors/build/executor", | ||
// "schema": "./src/executors/build/schema.json", | ||
// "description": "build executor" | ||
// } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.