Home
Overview
Available Tasks (General)
|
projectBuild
Description
This task builds the specified project.
Parameters
Attribute |
Description |
Required |
ProjectName |
Name of project to be built |
Yes
|
BuildType |
Type
of build |
No,
Default is Incremental
May be Incremental, Full,
or Auto |
failonerror |
Whether
or not builds should fail on error |
No,
Default is true |
DebugCompilation |
Whether on
not compilations should be debug |
No,
Default is true |
Quiet |
Where or not to print out messsages |
No, Default is false |
|
|
|
Examples
<projectBuild
ProjectName="myProject" />
Builds "myProject" (default is incremental
with debug information).
<projectBuild
ProjectName="myProject" failonerror="true"
DebugCompilation="false"
BuildType="full" />
Production build of "myProject" (full
build without debug information).
|
|
|