Forrest logo
back to context overview

dotnet-build

List of commands for dotnet-build:

  • dotnet-build:tldr:508c3 dotnet-build: Compile without restoring dependencies.
    $ dotnet build --no-restore
    try on your machine
    explain this command
  • dotnet-build:tldr:9e295 dotnet-build: Compile a .NET project or solution in debug mode.
    $ dotnet build ${path-to-project_or_solution}
    try on your machine
    explain this command
  • dotnet-build:tldr:d4612 dotnet-build: Compile with a specific verbosity level.
    $ dotnet build --verbosity ${select}
    try on your machine
    explain this command
  • dotnet-build:tldr:e834e dotnet-build: Compile the project or solution in the current directory.
    $ dotnet build
    try on your machine
    explain this command
  • dotnet-build:tldr:ecf3e dotnet-build: Specify the output directory.
    $ dotnet build --output ${path-to-directory}
    try on your machine
    explain this command
  • dotnet-build:tldr:f291f dotnet-build: Compile for a specific runtime.
    $ dotnet build --runtime ${runtime_identifier}
    try on your machine
    explain this command
  • dotnet-build:tldr:f34f3 dotnet-build: Compile in release mode.
    $ dotnet build --configuration ${Release}
    try on your machine
    explain this command
back to context overview