NAntScript
![]() ![]() ![]() |
v1.2.0 |
Compiles a collection of taskdef/funcdef files into an assembly.
Compiles a collection of build files containing <taskdef> task and <funcdef> task definitions. Each build file should contain a <project> top-level node, with taskdef/funcdef nodes as child elements. The compiled assembly's tasks are loaded.
Attribute | Type | Description | Required |
---|---|---|---|
output | string | The output for the compiled library. | True |
failonerror | bool | False | |
if | bool | False | |
unless | bool | False | |
verbose | bool | False |
FileSet
of source files for compilation. Compile all .taskdef files to an assembly in a temporary directory, and load the compiled tasks.
<tdc output="${path::get-temp-path()}/myTemporaryBuildAssembly.dll" > <sources> <include name="*.taskdef" /> </sources> </tdc>