<jsc>

Compiles JScript.NET programs.

Parameters

Attribute Type Description Required
autoref bool
Automatically references assemblies if they have the same name as an imported namespace or as a type annotation when declaring a variable. The default is false.
False
codepage string
Specifies the code page to use for all source code files in the compilation.
False
nostdlib bool
Instructs the compiler not to import standard library, and changes NAnt.DotNet.Tasks.JscTask.AutoRef to false. The default is false.
False
platform string
Specifies which platform version of common language runtime (CLR) can run the output file.
False
versionsafe bool
Causes the compiler to generate errors for implicit method overrides. The default is false.
False
warninglevel string
Specifies the warning level for the compiler to display. Valid values are 0-4. The default is 4.
False
debug bool
Generate debug output. The default is false.
False
define string
Define conditional compilation symbol(s).
False
delaysign
Specifies whether to delay sign the assembly using only the public portion of the strong name key. The default is NAnt.DotNet.Types.DelaySign.NotSet.
False
failonerror bool
Determines if task failure stops the build, or is just reported. The default is true.
False
rebuild bool
Instructs NAnt to recompile the output file regardless of the file timestamps.
False
if bool
If true then the task will be executed; otherwise, skipped. The default is true.
False
keycontainer string
Specifies the key pair container used to strongname the assembly.
False
keyfile file
Specifies a strong name key file.
False
main string
Specifies which type contains the Main method that you want to use as the entry point into the program.
False
nowarn string
Specifies a comma-separated list of warnings that should be suppressed by the compiler.
Obsolete. Use the element instead.
False
output file
The output file created by the compiler.
True
target string
Output type. Possible values are exe, winexe, library or module.
True
timeout int
The maximum amount of time the application is allowed to execute, expressed in milliseconds. Defaults to no time-out.
False
unless bool
Opposite of NAnt.Core.Task.IfDefined. If false then the task will be executed; otherwise, skipped. The default is false.
False
verbose bool
Determines whether the task should report detailed build log messages. The default is false.
False
warnaserror bool
Instructs the compiler to treat all warnings as errors. The default is false.
False
win32icon file
Icon to associate with the application.
False
win32res file
Specifies a Win32 resource file (.res).
False

Framework-configurable parameters

Attribute Type Description Required
exename string
The name of the executable that should be used to launch the external program.
False
managed
Specifies whether the external program should be treated as a managed application, possibly forcing it to be executed under the currently targeted version of the CLR.
False
supportsnowarnlist bool
Indicates whether the compiler for a given target framework supports a command line option that allows a list of warnings to be suppressed. The default is false.
False
supportspackagereferences bool
Indicates whether package references are supported by compiler for a given target framework. The default is false.
False
supportsplatform bool
Specifies whether the compiler for the active target framework supports limiting the platform on which the compiled code can run. The default is false.
False
supportswarnaserrorlist bool
Indicates whether the compiler for a given target framework supports the "warnaserror" option that takes a list of warnings. The default is false.
False
useruntimeengine bool
Specifies whether the external program is a managed application which should be executed using a runtime engine, if configured. The default is false.
Obsolete. Use the managed attribute and Managed property instead.
False

Nested elements

<arg>

The command-line arguments for the external program.

When passed to an external application, the argument will be quoted when appropriate. This does not apply to the NAnt.Core.Types.Argument.Line parameter, which is always passed as is.

Parameters

Attribute Type Description Required
dir directory
The value for a directory-based command-line argument; will be replaced with the absolute path of the directory.
False
file file
The name of a file as a single command-line argument; will be replaced with the absolute filename of the file.
False
if bool
Indicates if the argument should be passed to the external program. If true then the argument will be passed; otherwise, skipped. The default is true.
False
line string
List of command-line arguments; will be passed to the executable as is.
False
path
The value for a PATH-like command-line argument; you can use : or ; as path separators and NAnt will convert it to the platform's local conventions, while resolving references to environment variables.
False
unless bool
Indicates if the argument should not be passed to the external program. If false then the argument will be passed; otherwise, skipped. The default is false.
False
value string
A single command-line argument; can contain space characters.
False

Nested elements

<path>

Sets a single command-line argument and treats it like a PATH - ensures the right separator for the local platform is used.

</path>

Examples

A single command-line argument containing a space character.

<arg value="-l -a" />

Two separate command-line arguments.

<arg line="-l -a" />

A single command-line argument with the value \dir;\dir2;\dir3 on DOS-based systems and /dir:/dir2:/dir3 on Unix-like systems.

<arg path="/dir;/dir2:\dir3" />

<arg>

<lib>

Additional directories to search in for assembly references.

</lib>

<pkg-references>

Specifies list of packages to reference.

Parameters

Attribute Type Description Required
name string
Name of the package to reference. Multiple package can be specified with a single element as a semi-colon separated list of package names.
True
if bool
Indicates if the package should be passed to the task. If true then the package will be passed; otherwise, skipped. The default is true.
False
unless bool
Indicates if the package should not be passed to the task. If false then the package will be passed; otherwise, skipped. The default is false.
False

<pkg-references>

<references>

Reference metadata from the specified assembly files.

</references>

<resources>

Resources to embed.

Parameters

Attribute Type Description Required
dynamicprefix bool
Indicates whether prefixes should be dynamically generated by taking the path of the resource relative to the base directory and appending it to the specified prefix. The default is false.
False
prefix string
Indicates the prefix to prepend to the actual resource. This is usually the default namespace of the assembly.
False
basedir directory
The base of the directory of this fileset. The default is the project base directory.
False
casesensitive bool
Indicates whether include and exclude patterns must be treated in a case-sensitive way. The default is true on Unix; otherwise, false.
False
defaultexcludes bool
Indicates whether default excludes should be used or not. The default is true.
False
failonempty bool
When set to true, causes the fileset element to throw a NAnt.Core.ValidationException when no files match the includes and excludes criteria. The default is false.
False
id string
The ID used to be referenced later.
False
refid string
The ID to use as the reference.
False

Nested elements

<exclude>

The items to exclude from the fileset.

Automatically validates attributes in the element based on attributes applied to members in derived classes.

Parameters

Attribute Type Description Required
name string
The pattern or file name to exclude.
True
if bool
If true then the pattern will be excluded; otherwise, skipped. The default is true.
False
unless bool
Opposite of NAnt.Core.Types.FileSet.Exclude.IfDefined. If false then the pattern will be excluded; otherwise, skipped. The default is false.
False

<exclude>

<excludesfile>

The files from which a list of patterns or files to exclude should be obtained.

Automatically validates attributes in the element based on attributes applied to members in derived classes.

Parameters

Attribute Type Description Required
name file
The name of a file; each line of this file is taken to be a pattern.
True
if bool
If true then the patterns will be excluded; otherwise, skipped. The default is true.
False
unless bool
Opposite of NAnt.Core.Types.FileSet.ExcludesFile.IfDefined. If false then the patterns will be excluded; otherwise, skipped. The default is false.
False

<excludesfile>

<include>

The items to include in the fileset.

Automatically validates attributes in the element based on attributes applied to members in derived classes.

Parameters

Attribute Type Description Required
name string
The pattern or file name to include.
True
asis bool
If true then the file name will be added to the NAnt.Core.Types.FileSet without pattern matching or checking if the file exists. The default is false.
False
frompath bool
If true then the file will be searched for on the path. The default is false.
False
if bool
If true then the pattern will be included; otherwise, skipped. The default is true.
False
unless bool
Opposite of NAnt.Core.Types.FileSet.Include.IfDefined. If false then the pattern will be included; otherwise, skipped. The default is false.
False
if bool
If true then the pattern will be excluded; otherwise, skipped. The default is true.
False
name string
The pattern or file name to exclude.
True
unless bool
Opposite of NAnt.Core.Types.FileSet.Exclude.IfDefined. If false then the pattern will be excluded; otherwise, skipped. The default is false.
False

<include>

<includesfile>

The files from which a list of patterns or files to include should be obtained.

Automatically validates attributes in the element based on attributes applied to members in derived classes.

Parameters

Attribute Type Description Required
asis bool
If true then the patterns in the include file will be added to the NAnt.Core.Types.FileSet without pattern matching or checking if the file exists. The default is false.
False
frompath bool
If true then the patterns in the include file will be searched for on the path. The default is false.
False
if bool
If true then the patterns will be included; otherwise, skipped. The default is true.
False
unless bool
Opposite of NAnt.Core.Types.FileSet.IncludesFile.IfDefined. If false then the patterns will be included; otherwise, skipped. The default is false.
False
if bool
If true then the patterns will be excluded; otherwise, skipped. The default is true.
False
name file
The name of a file; each line of this file is taken to be a pattern.
True
unless bool
Opposite of NAnt.Core.Types.FileSet.ExcludesFile.IfDefined. If false then the patterns will be excluded; otherwise, skipped. The default is false.
False

<includesfile>

<excludes>

The items to exclude from the fileset.

Obsolete. Use element instead.

Automatically validates attributes in the element based on attributes applied to members in derived classes.

Parameters

Attribute Type Description Required
name string
The pattern or file name to exclude.
True
if bool
If true then the pattern will be excluded; otherwise, skipped. The default is true.
False
unless bool
Opposite of NAnt.Core.Types.FileSet.Exclude.IfDefined. If false then the pattern will be excluded; otherwise, skipped. The default is false.
False

<excludes>

<includes>

The items to include in the fileset.

Obsolete. Use element instead.

Automatically validates attributes in the element based on attributes applied to members in derived classes.

Parameters

Attribute Type Description Required
name string
The pattern or file name to include.
True
asis bool
If true then the file name will be added to the NAnt.Core.Types.FileSet without pattern matching or checking if the file exists. The default is false.
False
frompath bool
If true then the file will be searched for on the path. The default is false.
False
if bool
If true then the pattern will be included; otherwise, skipped. The default is true.
False
unless bool
Opposite of NAnt.Core.Types.FileSet.Include.IfDefined. If false then the pattern will be included; otherwise, skipped. The default is false.
False
if bool
If true then the pattern will be excluded; otherwise, skipped. The default is true.
False
name string
The pattern or file name to exclude.
True
unless bool
Opposite of NAnt.Core.Types.FileSet.Exclude.IfDefined. If false then the pattern will be excluded; otherwise, skipped. The default is false.
False

<includes>

<includesList>

The files from which a list of patterns or files to include should be obtained.

Obsolete. Use instead.

Automatically validates attributes in the element based on attributes applied to members in derived classes.

Parameters

Attribute Type Description Required
asis bool
If true then the patterns in the include file will be added to the NAnt.Core.Types.FileSet without pattern matching or checking if the file exists. The default is false.
False
frompath bool
If true then the patterns in the include file will be searched for on the path. The default is false.
False
if bool
If true then the patterns will be included; otherwise, skipped. The default is true.
False
unless bool
Opposite of NAnt.Core.Types.FileSet.IncludesFile.IfDefined. If false then the patterns will be included; otherwise, skipped. The default is false.
False
if bool
If true then the patterns will be excluded; otherwise, skipped. The default is true.
False
name file
The name of a file; each line of this file is taken to be a pattern.
True
unless bool
Opposite of NAnt.Core.Types.FileSet.ExcludesFile.IfDefined. If false then the patterns will be excluded; otherwise, skipped. The default is false.
False

<includesList>

<resources>

<sources>

The set of source files for compilation.

</sources>

Examples

Compile helloworld.js to helloworld.exe.

    <jsc target="exe" output="helloworld.exe" debug="true">
    <sources>
        <include name="helloworld.js" />
    </sources>
</jsc>

Requirements

Assembly
NAnt.DotNet.dll
Namespace
NAnt.DotNet.Tasks