dotnet-build: add page (#4340)

beep
Axel Navarro 2020-09-29 07:20:05 -03:00 committed by GitHub
parent 42780dc7aa
commit 23cc14bc94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
# dotnet build
> Builds a .NET application and its dependencies.
> More information: <https://docs.microsoft.com/dotnet/core/tools/dotnet-build>.
- Compile the project or solution in the current directory:
`dotnet build`
- Compile a .NET project or solution in debug mode:
`dotnet build {{path/to/project_or_solution}}`
- Compile in release mode:
`dotnet build`
- Compile without restoring dependencies:
`dotnet build --no-restore`
- Compile with a specific verbosity level:
`dotnet build --verbosity {{quiet|minimal|normal|detailed|diagnostic}}`
- Compile for a specific runtime:
`dotnet build --runtime {{runtime_identifier}}`
- Specify the output directory:
`dotnet build --output {{path/to/directory}}`