build
Builds the project or batch solution via dotnet build.
@dotnet build {
configuration = "Debug"
parallel = 1
log = false
restore = true
version = "1.2.3"
args = "--no-incremental"
dependencies = true
}Capabilities
| Capability | Info |
|---|---|
| Cache | remote |
| Bach | yes |
Argument Reference
The following arguments are supported:
configuration- (Optional) Build configuration. Default value isDebug.parallel- (Optional) Max CPU count (-maxcpucount).log- (Optional) Adds-bl. Default value isfalse.restore- (Optional) Runs restore before build. Default value istrue.version- (Optional) Sets MSBuildVersion.args- (Optional) Extradotnet buildarguments.dependencies- (Optional) When false, adds--no-dependencies. Default value istrue.
Last updated on