build

Build project and ensure packages are available first.

@dotnet build {
    configuration: "Release"
    parallel: 1
    log: true
    arguments: --no-incremental
}

Argument Reference

The following arguments are supported:

  • configuration - (Optional) Configuration to use to build project. Default is Debug.
  • parallel - (Optional) Max worker processes to build the project.
  • log - (Optional) Enable binlog for the build.
  • arguments - (Optional) Arguments for command.
Last updated on