update to NAnt 0.92 final

This commit is contained in:
Marko Lahma
2013-10-30 07:56:16 +02:00
parent c639a95904
commit 1747ed066c
668 changed files with 16328 additions and 66115 deletions

View File

@@ -55,12 +55,12 @@ Compilation and Installation
You will need the .NET Framework SDK as well as the runtime
components if you intend to compile programs.
Note: NAnt currently supports versions 1.0, 1.1 and 2.0
Note: NAnt currently supports versions 1.0, 1.1, 2.0, 3.5, and 4.0
of the Microsoft .NET Framework.
or
* Mono for Windows (version 1.0 or higher)
* Mono for Windows (version 2.0 or higher)
Available from http://www.mono-project.com/downloads/
@@ -73,7 +73,7 @@ Compilation and Installation
Available from: http://www.freedesktop.org/Software/pkgconfig
* A working Mono installation and development libraries (version 1.0 or higher)
* A working Mono installation and development libraries (version 2.0 or higher)
Available from: http://www.mono-project.com/downloads/
@@ -85,28 +85,28 @@ Compilation and Installation
GNU Make
--------
make install MONO= MCS=csc prefix=<installation path> [DESTDIR=<staging path>]
make install MONO= MCS=csc prefix=<installation path> [DESTDIR=<staging path>] [TARGET=<nant target>]
eg. make install MONO= MCS=csc prefix="c:\Program Files"
eg. make install MONO= MCS=csc prefix="c:\Program Files" TARGET=net-2.0
NMake
-----
nmake -f Makefile.nmake install prefix=<installation path> [DESTDIR=<staging path>]
nmake -f Makefile.nmake install prefix=<installation path> [DESTDIR=<staging path>] [TARGET=<nant target>]
eg. nmake -f Makefile.nmake install prefix="c:\Program Files"
eg. nmake -f Makefile.nmake install prefix="c:\Program Files" TARGET=net-4.0
Building NAnt using Mono:
GNU Make
--------
make install prefix=<installation path> [DESTDIR=<staging path>]
make install prefix=<installation path> [DESTDIR=<staging path>] [TARGET=<nant target>]
eg. make install prefix="c:\Program Files"
eg. make install prefix="c:\Program Files" TARGET=mono-4.0
NMake
-----
nmake -f Makefile.nmake install MONO=mono CSC=mcs prefix=<installation path> [DESTDIR=<staging path>]
nmake -f Makefile.nmake install MONO=mono CSC=mcs prefix=<installation path> [DESTDIR=<staging path>] [TARGET=<nant target>]
eg. nmake -f Makefile.nmake install MONO=mono CSC=mcs prefix=/usr/local/
@@ -123,7 +123,7 @@ Documentation is available in HTML format, in the doc/ directory.
License
-------
Copyright (C) 2001-2008 Gerry Shaw
Copyright (C) 2001-2012 Gerry Shaw
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@@ -5,9 +5,9 @@
</assembly>
<members>
<member name="T:NAnt.Compression.Tasks.ExpandBaseTask">
<summary>
Summary description for ExpandTask.
</summary>
<summary>
Summary description for ExpandTask.
</summary>
</member>
<member name="M:NAnt.Compression.Tasks.ExpandBaseTask.ExtractFile(System.IO.Stream,System.String,System.String,System.DateTime,System.Int64)">
<summary>
@@ -42,85 +42,92 @@
</exception>
</member>
<member name="P:NAnt.Compression.Tasks.ExpandBaseTask.Overwrite">
<summary>
Overwrite files, even if they are newer than the corresponding
entries in the archive. The default is <see langword="true" />.
</summary>
<summary>
Overwrite files, even if they are newer than the corresponding
entries in the archive. The default is <see langword="true" />.
</summary>
</member>
<member name="T:NAnt.Compression.Tasks.GUnzip">
<summary>
Expands a file packed using GZip compression.
</summary>
<example>
<para>Expands &quot;test.tar.gz&quot; to &quot;test2.tar&quot;.</para>
<code>
<![CDATA[
<gunzip src="test.tar.gz" dest="test.tar" />
]]>
</code>
</example>
<summary>
Expands a file packed using GZip compression.
</summary>
<example>
<para>Expands &quot;test.tar.gz&quot; to &quot;test2.tar&quot;.</para>
<code>
<![CDATA[
<gunzip src="test.tar.gz" dest="test.tar" />
]]>
</code>
</example>
</member>
<member name="M:NAnt.Compression.Tasks.GUnzip.ExecuteTask">
<summary>
Extracts the file from the gzip archive.
</summary>
<summary>
Extracts the file from the gzip archive.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.GUnzip.SrcFile">
<summary>
The file to expand.
</summary>
<summary>
The file to expand.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.GUnzip.DestFile">
<summary>
The destination file.
</summary>
<summary>
The destination file.
</summary>
</member>
<member name="T:NAnt.Compression.Tasks.TarTask">
<summary>
Creates a tar file from the specified filesets.
</summary>
<remarks>
<para>Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see> (SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#.</para>
</remarks>
<example>
<para>
Tar all files in <c>${build.dir}</c> and <c>${doc.dir}</c> into a file
called &quot;backup.tar.gz&quot;, and apply gzip compression to it.
</para>
<code>
<![CDATA[
<tar destfile="backup.tar.gz" compression="GZip">
<fileset basedir="${bin.dir}" prefix="bin">
<include name="**/*" />
</fileset>
<fileset basedir="${doc.dir}" prefix="doc">
<include name="**/*" />
</fileset>
</tar>
]]>
</code>
</example>
<summary>
Creates a tar file from the specified filesets.
</summary>
<remarks>
<para>Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see> (SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#.</para>
</remarks>
<example>
<para>
Tar all files in <c>${build.dir}</c> and <c>${doc.dir}</c> into a file
called &quot;backup.tar.gz&quot;, and apply gzip compression to it.
</para>
<code>
<![CDATA[
<tar destfile="backup.tar.gz" compression="GZip">
<fileset basedir="${bin.dir}" prefix="bin">
<include name="**/*" />
</fileset>
<fileset basedir="${doc.dir}" prefix="doc">
<include name="**/*" />
</fileset>
</tar>
]]>
</code>
</example>
</member>
<member name="M:NAnt.Compression.Tasks.TarTask.ExecuteTask">
<summary>
Creates the tar file.
</summary>
<summary>
Creates the tar file.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.TarTask.DestFile">
<summary>
The tar file to create.
</summary>
<summary>
The tar file to create.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.TarTask.IncludeEmptyDirs">
<summary>
Include empty directories in the generated tar file. The default is
<see langword="false" />.
</summary>
<summary>
Include empty directories in the generated tar file. The default is
<see langword="false" />.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.TarTask.Flatten">
<summary>
Ignore directory structure of source directory, compress all files
into a single directory.
The default value is <see langword="false" />.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.TarTask.TarFileSets">
<summary>
The set of files to be included in the archive.
</summary>
<summary>
The set of files to be included in the archive.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.TarTask.CompressionMethod">
<summary>
@@ -128,39 +135,39 @@
</summary>
</member>
<member name="T:NAnt.Compression.Tasks.UnTarTask">
<summary>
Extracts files from a tar archive.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>Extracts all files from a gzipped tar, preserving the directory structure.</para>
<code>
<![CDATA[
<untar src="nant-bin.tar.gz" dest="bin" compression="gzip" />
]]>
</code>
</example>
<summary>
Extracts files from a tar archive.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>Extracts all files from a gzipped tar, preserving the directory structure.</para>
<code>
<![CDATA[
<untar src="nant-bin.tar.gz" dest="bin" compression="gzip" />
]]>
</code>
</example>
</member>
<member name="M:NAnt.Compression.Tasks.UnTarTask.ExecuteTask">
<summary>
Extracts the files from the archive.
</summary>
<summary>
Extracts the files from the archive.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.UnTarTask.SrcFile">
<summary>
The archive file to expand.
</summary>
<summary>
The archive file to expand.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.UnTarTask.DestinationDirectory">
<summary>
The directory where to store the expanded file(s). The default is
the project base directory.
</summary>
<summary>
The directory where to store the expanded file(s). The default is
the project base directory.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.UnTarTask.CompressionMethod">
<summary>
@@ -168,143 +175,150 @@
</summary>
</member>
<member name="T:NAnt.Compression.Tasks.UnZipTask">
<summary>
Extracts files from a zip archive.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>Extracts all the file from the zip, preserving the directory structure.</para>
<code>
<![CDATA[
<unzip zipfile="backup.zip"/>
]]>
</code>
</example>
<summary>
Extracts files from a zip archive.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>Extracts all the file from the zip, preserving the directory structure.</para>
<code>
<![CDATA[
<unzip zipfile="backup.zip"/>
]]>
</code>
</example>
</member>
<member name="M:NAnt.Compression.Tasks.UnZipTask.ExecuteTask">
<summary>
Extracts the files from the zip file.
</summary>
<summary>
Extracts the files from the zip file.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.UnZipTask.ZipFile">
<summary>
The archive file to expand.
</summary>
<summary>
The archive file to expand.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.UnZipTask.ToDirectory">
<summary>
The directory where the expanded files should be stored. The
default is the project base directory.
</summary>
<summary>
The directory where the expanded files should be stored. The
default is the project base directory.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.UnZipTask.Encoding">
<summary>
The character encoding that has been used for filenames inside the
zip file. The default is the system's OEM code page.
</summary>
<summary>
The character encoding that has been used for filenames inside the
zip file. The default is the system's OEM code page.
</summary>
</member>
<member name="T:NAnt.Compression.Tasks.ZipTask">
<summary>
Creates a zip file from the specified filesets.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>
Zip all files in <c>${build.dir}</c> and <c>${doc.dir}</c> into a file
called &quot;backup.zip&quot;.
</para>
<code>
<![CDATA[
<zip zipfile="backup.zip">
<fileset basedir="${bin.dir}" prefix="bin">
<include name="**/*" />
</fileset>
<fileset basedir="${doc.dir}" prefix="doc">
<include name="**/*" />
</fileset>
</zip>
]]>
</code>
</example>
<summary>
Creates a zip file from the specified filesets.
</summary>
<remarks>
<para>
Uses <see href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</see>
(SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#.
</para>
</remarks>
<example>
<para>
Zip all files in <c>${build.dir}</c> and <c>${doc.dir}</c> into a file
called &quot;backup.zip&quot;.
</para>
<code>
<![CDATA[
<zip zipfile="backup.zip">
<fileset basedir="${bin.dir}" prefix="bin">
<include name="**/*" />
</fileset>
<fileset basedir="${doc.dir}" prefix="doc">
<include name="**/*" />
</fileset>
</zip>
]]>
</code>
</example>
</member>
<member name="M:NAnt.Compression.Tasks.ZipTask.ExecuteTask">
<summary>
Creates the zip file.
</summary>
<summary>
Creates the zip file.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.ZipFile">
<summary>
The zip file to create.
</summary>
<summary>
The zip file to create.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Comment">
<summary>
The comment for the file.
</summary>
<summary>
The comment for the file.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Stamp">
<summary>
Date/time stamp for the files in the format MM/DD/YYYY HH:MM:SS.
</summary>
<summary>
Date/time stamp for the files in the format MM/DD/YYYY HH:MM:SS.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.ZipLevel">
<summary>
Desired level of compression. Possible values are 0 (STORE only)
to 9 (highest). The default is <c>6</c>.
</summary>
<summary>
Desired level of compression. Possible values are 0 (STORE only)
to 9 (highest). The default is <c>6</c>.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.IncludeEmptyDirs">
<summary>
Include empty directories in the generated zip file. The default is
<see langword="false" />.
</summary>
<summary>
Include empty directories in the generated zip file. The default is
<see langword="false" />.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Flatten">
<summary>
Ignore directory structure of source directory, compress all files
into a single directory.
The default value is <see langword="false" />.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.ZipFileSets">
<summary>
The set of files to be included in the archive.
</summary>
<summary>
The set of files to be included in the archive.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.DuplicateHandling">
<summary>
Specifies the behaviour when a duplicate file is found. The default
is <see cref="F:NAnt.Compression.Types.DuplicateHandling.Add"/>.
is <see cref="T:NAnt.Compression.Types.DuplicateHandling.Add" />.
</summary>
</member>
<member name="P:NAnt.Compression.Tasks.ZipTask.Encoding">
<summary>
The character encoding to use for filenames and comment inside the
zip file. The default is the system's OEM code page.
</summary>
<summary>
The character encoding to use for filenames and comment inside the
zip file. The default is the system's OEM code page.
</summary>
</member>
<member name="T:NAnt.Compression.Types.DuplicateHandling">
<summary>
Specifies how entries with the same name should be processed.
</summary>
<summary>
Specifies how entries with the same name should be processed.
</summary>
</member>
<member name="F:NAnt.Compression.Types.DuplicateHandling.Add">
<summary>
Overwrite existing entry with same name.
</summary>
<summary>
Overwrite existing entry with same name.
</summary>
</member>
<member name="F:NAnt.Compression.Types.DuplicateHandling.Preserve">
<summary>
Preserve existing entry with the same name.
</summary>
<summary>
Preserve existing entry with the same name.
</summary>
</member>
<member name="F:NAnt.Compression.Types.DuplicateHandling.Fail">
<summary>
Report failure when two entries have the same name.
</summary>
<summary>
Report failure when two entries have the same name.
</summary>
</member>
<member name="T:NAnt.Compression.Types.DuplicateHandlingConverter">
<summary>
@@ -337,19 +351,19 @@
</summary>
</member>
<member name="F:NAnt.Compression.Types.TarCompressionMethod.None">
<summary>
No compression.
</summary>
<summary>
No compression.
</summary>
</member>
<member name="F:NAnt.Compression.Types.TarCompressionMethod.GZip">
<summary>
GZIP compression.
</summary>
<summary>
GZIP compression.
</summary>
</member>
<member name="F:NAnt.Compression.Types.TarCompressionMethod.BZip2">
<summary>
BZIP2 compression.
</summary>
<summary>
BZIP2 compression.
</summary>
</member>
<member name="T:NAnt.Compression.Types.TarCompressionMethodConverter">
<summary>
@@ -382,45 +396,45 @@
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSet.FileMode">
<summary>
A 3 digit octal string, specify the user, group and other modes
in the standard Unix fashion. Only applies to plain files. The
default is <c>644</c>.
</summary>
<summary>
A 3 digit octal string, specify the user, group and other modes
in the standard Unix fashion. Only applies to plain files. The
default is <c>644</c>.
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSet.DirMode">
<summary>
A 3 digit octal string, specify the user, group and other modes
in the standard Unix fashion. Only applies to directories. The
default is <c>755</c>.
</summary>
<summary>
A 3 digit octal string, specify the user, group and other modes
in the standard Unix fashion. Only applies to directories. The
default is <c>755</c>.
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSet.UserName">
<summary>
The username for the tar entry.
</summary>
<summary>
The username for the tar entry.
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSet.Uid">
<summary>
The user identifier (UID) for the tar entry.
</summary>
<summary>
The user identifier (UID) for the tar entry.
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSet.GroupName">
<summary>
The groupname for the tar entry.
</summary>
<summary>
The groupname for the tar entry.
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSet.Gid">
<summary>
The group identifier (GID) for the tar entry.
</summary>
<summary>
The group identifier (GID) for the tar entry.
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSet.Prefix">
<summary>
The top level directory prefix. If set, all file and directory paths
in the fileset will have this value prepended. Can either be a single
directory name or a "/" separated path.
</summary>
<summary>
The top level directory prefix. If set, all file and directory paths
in the fileset will have this value prepended. Can either be a single
directory name or a "/" separated path.
</summary>
</member>
<member name="T:NAnt.Compression.Types.TarFileSetCollection">
<summary>
@@ -474,11 +488,11 @@
</returns>
</member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.CopyTo(NAnt.Compression.Types.TarFileSet[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.Compression.Types.TarFileSetCollection.IndexOf(NAnt.Compression.Types.TarFileSet)">
<summary>
@@ -511,16 +525,16 @@
<param name="item">The <see cref="T:NAnt.Compression.Types.TarFileSet"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.Compression.Types.TarFileSetCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
</member>
<member name="P:NAnt.Compression.Types.TarFileSetCollection.FileCount">
<summary>
Get the total number of files that are represented by the
filesets in this collection.
</summary>
<summary>
Get the total number of files that are represented by the
filesets in this collection.
</summary>
</member>
<member name="T:NAnt.Compression.Types.TarFileSetEnumerator">
<summary>
@@ -535,28 +549,28 @@
<param name="TarFileSets">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.Compression.Types.TarFileSetEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.Compression.Types.TarFileSetEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.Compression.Types.TarFileSetEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
<member name="T:NAnt.Compression.Types.ZipFileSet">
<summary>
@@ -565,11 +579,11 @@
</summary>
</member>
<member name="P:NAnt.Compression.Types.ZipFileSet.Prefix">
<summary>
The top level directory prefix. If set, all file and directory paths
in the fileset will have this value prepended. Can either be a single
directory name or a "/" separated path.
</summary>
<summary>
The top level directory prefix. If set, all file and directory paths
in the fileset will have this value prepended. Can either be a single
directory name or a "/" separated path.
</summary>
</member>
<member name="T:NAnt.Compression.Types.ZipFileSetCollection">
<summary>
@@ -623,11 +637,11 @@
</returns>
</member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.CopyTo(NAnt.Compression.Types.ZipFileSet[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.Compression.Types.ZipFileSetCollection.IndexOf(NAnt.Compression.Types.ZipFileSet)">
<summary>
@@ -660,16 +674,16 @@
<param name="item">The <see cref="T:NAnt.Compression.Types.ZipFileSet"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.Compression.Types.ZipFileSetCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
</member>
<member name="P:NAnt.Compression.Types.ZipFileSetCollection.FileCount">
<summary>
Get the total number of files that are represented by the
filesets in this collection.
</summary>
<summary>
Get the total number of files that are represented by the
filesets in this collection.
</summary>
</member>
<member name="T:NAnt.Compression.Types.ZipFileSetEnumerator">
<summary>
@@ -684,28 +698,28 @@
<param name="ZipFileSets">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.Compression.Types.ZipFileSetEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.Compression.Types.ZipFileSetEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.Compression.Types.ZipFileSetEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
</members>
</doc>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -50,20 +50,20 @@
</example>
</member>
<member name="M:NAnt.MSNet.Tasks.IldasmTask.Initialize">
<summary>
Checks whether the task is initialized with valid attributes.
</summary>
<summary>
Checks whether the task is initialized with valid attributes.
</summary>
</member>
<member name="M:NAnt.MSNet.Tasks.IldasmTask.ExecuteTask">
<summary>
Disassembles the PE file(s).
</summary>
<summary>
Disassembles the PE file(s).
</summary>
</member>
<member name="M:NAnt.MSNet.Tasks.IldasmTask.DisassemblyFile(System.IO.FileInfo)">
<summary>
Disassembles the specified PE file.
</summary>
<param name="inputFile">The PE file to disassemble.</param>
<summary>
Disassembles the specified PE file.
</summary>
<param name="inputFile">The PE file to disassemble.</param>
</member>
<member name="M:NAnt.MSNet.Tasks.IldasmTask.GetOutputFile(System.IO.FileInfo)">
<summary>
@@ -80,9 +80,9 @@
<exception cref="T:NAnt.Core.BuildException">The path of the output file could not be determined.</exception>
</member>
<member name="M:NAnt.MSNet.Tasks.IldasmTask.WriteOptions(System.IO.FileInfo,System.IO.FileInfo)">
<summary>
Writes the disassembler options.
</summary>
<summary>
Writes the disassembler options.
</summary>
</member>
<member name="M:NAnt.MSNet.Tasks.IldasmTask.WriteOption(System.IO.StringWriter,System.String)">
<summary>
@@ -115,76 +115,76 @@
</param>
</member>
<member name="M:NAnt.MSNet.Tasks.IldasmTask.NeedsDisassembling(System.IO.FileInfo,System.IO.FileInfo)">
<summary>
Determines whether or not disassembling is needed.
</summary>
<returns>
<see langword="true" /> if disassembling is needed; otherwise,
<see langword="false" />.
</returns>
<summary>
Determines whether or not disassembling is needed.
</summary>
<returns>
<see langword="true" /> if disassembling is needed; otherwise,
<see langword="false" />.
</returns>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.All">
<summary>
Specifies whether or not the disassembler should combine the
<c>/HEADER</c>, <c>/BYTE</c>, and <c>/TOKENS</c> options. The default
is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if the disassembler should combine the
<c>/HEADER</c>, <c>/BYTE</c>, and <c>/TOKENS</c> options;
otherwise, <see langword="false" />. The default is
<see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/ALL</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should combine the
<c>/HEADER</c>, <c>/BYTE</c>, and <c>/TOKENS</c> options. The default
is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if the disassembler should combine the
<c>/HEADER</c>, <c>/BYTE</c>, and <c>/TOKENS</c> options;
otherwise, <see langword="false" />. The default is
<see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/ALL</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Bytes">
<summary>
Specifies whether or not the disassembler should generate the
IL stream bytes (in hexadecimal notation) as instruction comments.
The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if the IL stream bytes should be generated
as instruction comments; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/BYTE</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should generate the
IL stream bytes (in hexadecimal notation) as instruction comments.
The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if the IL stream bytes should be generated
as instruction comments; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/BYTE</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.ForceRebuild">
<summary>
Instructs NAnt to rebuild the output file regardless of the file
timestamps. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if the output file should be rebuilt
regardless of its timestamps; otherwise <see langword="false" />.
The default is <see langword="false" />.
</value>
<summary>
Instructs NAnt to rebuild the output file regardless of the file
timestamps. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if the output file should be rebuilt
regardless of its timestamps; otherwise <see langword="false" />.
The default is <see langword="false" />.
</value>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Header">
<summary>
Specifies whether or not the disassembler should include PE header
information and runtime header information in the output. The default
is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if PE header information and runtime header
information should be included in the output; otherwise,
<see langword="false" />. The default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/HEADER</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should include PE header
information and runtime header information in the output. The default
is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if PE header information and runtime header
information should be included in the output; otherwise,
<see langword="false" />. The default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/HEADER</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.InputFile">
<summary>
@@ -196,36 +196,36 @@
</value>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.LineNumbers">
<summary>
Specifies whether or not the disassembler should include
references to original source lines. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if references to original source lines
should be included; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/LINENUM</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should include
references to original source lines. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if references to original source lines
should be included; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/LINENUM</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.NoIL">
<summary>
Specifies whether or not the disassembler should suppress ILASM
code output. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if ILASM code output should be suppresses;
otherwise, <see langword="false" />. The default is
<see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/NOIL</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should suppress ILASM
code output. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if ILASM code output should be suppresses;
otherwise, <see langword="false" />. The default is
<see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/NOIL</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.PublicOnly">
<summary>
@@ -245,103 +245,103 @@
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.QuoteAllNames">
<summary>
Specifies whether or not the disassembler should enclose all names
in single quotation marks. By default, only names that don't match
the ILASM definition of a simple name are quoted. The default is
<see langword="false" />.
</summary>
<value>
<see langword="true" /> if all names should be enclosed in single
quotation marks; otherwise, <see langword="false" />. The default
is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/QUOTEALLNAMES</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should enclose all names
in single quotation marks. By default, only names that don't match
the ILASM definition of a simple name are quoted. The default is
<see langword="false" />.
</summary>
<value>
<see langword="true" /> if all names should be enclosed in single
quotation marks; otherwise, <see langword="false" />. The default
is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/QUOTEALLNAMES</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.RawExceptionHandling">
<summary>
Specifies whether or not the disassembler should generate
structured exception handling clauses in canonical (label) form.
The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if structured exception handling clauses
should be generated in canonical form; otherwise,
<see langword="false" />. The default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/RAWEH</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should generate
structured exception handling clauses in canonical (label) form.
The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if structured exception handling clauses
should be generated in canonical form; otherwise,
<see langword="false" />. The default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/RAWEH</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Source">
<summary>
Specifies whether or not the disassembler should generate
original source lines as comments. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if original source lines should be
generated as comments; otherwise, <see langword="false" />.
The default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/SOURCE</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should generate
original source lines as comments. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if original source lines should be
generated as comments; otherwise, <see langword="false" />.
The default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/SOURCE</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Tokens">
<summary>
Specifies whether or not the disassembler should generate metadata
token values as comments. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if metadata token values should be
generated as comments; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/TOKENS</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should generate metadata
token values as comments. The default is <see langword="false" />.
</summary>
<value>
<see langword="true" /> if metadata token values should be
generated as comments; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/TOKENS</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Unicode">
<summary>
Specifies whether or not the disassembler should use the UNICODE
encoding when generating the output. The default is ANSI.
</summary>
<value>
<see langword="true" /> if the output should be generated using
the UNICODE encoding; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/UNICODE</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should use the UNICODE
encoding when generating the output. The default is ANSI.
</summary>
<value>
<see langword="true" /> if the output should be generated using
the UNICODE encoding; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/UNICODE</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Utf8">
<summary>
Specifies whether or not the disassembler should use the UTF-8
encoding when generating the output. The default is ANSI.
</summary>
<value>
<see langword="true" /> if the output should be generated using
the UTF-8 encoding; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/UTF8</c> flag.
</para>
</remarks>
<summary>
Specifies whether or not the disassembler should use the UTF-8
encoding when generating the output. The default is ANSI.
</summary>
<value>
<see langword="true" /> if the output should be generated using
the UTF-8 encoding; otherwise, <see langword="false" />. The
default is <see langword="false" />.
</value>
<remarks>
<para>
Corresponds to the <c>/UTF8</c> flag.
</para>
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Item">
<summary>
@@ -408,13 +408,13 @@
</value>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.Arguments">
<summary>
The command-line arguments for the external program.
</summary>
<remarks>
Overridden to ensure the &lt;arg&gt; elements would not be exposed
to build authors.
</remarks>
<summary>
The command-line arguments for the external program.
</summary>
<remarks>
Overridden to ensure the &lt;arg&gt; elements would not be exposed
to build authors.
</remarks>
</member>
<member name="P:NAnt.MSNet.Tasks.IldasmTask.ProgramArguments">
<summary>
@@ -426,25 +426,25 @@
</value>
</member>
<member name="T:NAnt.MSNet.Tasks.ServiceControllerTask">
<summary>
Allows a Windows service to be controlled.
</summary>
<example>
<para>Starts the World Wide Web Publishing Service on the local computer.</para>
<code>
<![CDATA[
<servicecontroller action="Start" service="w3svc" />
]]>
</code>
</example>
<example>
<para>Stops the Alerter service on computer 'MOTHER'.</para>
<code>
<![CDATA[
<servicecontroller action="Stop" service="Alerter" machine="MOTHER" />
]]>
</code>
</example>
<summary>
Allows a Windows service to be controlled.
</summary>
<example>
<para>Starts the World Wide Web Publishing Service on the local computer.</para>
<code>
<![CDATA[
<servicecontroller action="Start" service="w3svc" />
]]>
</code>
</example>
<example>
<para>Stops the Alerter service on computer 'MOTHER'.</para>
<code>
<![CDATA[
<servicecontroller action="Stop" service="Alerter" machine="MOTHER" />
]]>
</code>
</example>
</member>
<member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.#ctor">
<summary>
@@ -453,9 +453,9 @@
</summary>
</member>
<member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.ExecuteTask">
<summary>
Peforms actions on the service in order to reach the desired status.
</summary>
<summary>
Peforms actions on the service in order to reach the desired status.
</summary>
</member>
<member name="M:NAnt.MSNet.Tasks.ServiceControllerTask.DetermineDesiredStatus">
<summary>
@@ -503,77 +503,77 @@
<param name="serviceController"><see cref="T:System.ServiceProcess.ServiceController"/> instance for controlling the service identified by <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName"/> and <see cref="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName"/>.</param>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._serviceName">
<summary>
Holds the name of the service that should be controlled.
</summary>
<summary>
Holds the name of the service that should be controlled.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._machineName">
<summary>
Holds the name of the computer on which the service resides.
</summary>
<summary>
Holds the name of the computer on which the service resides.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._action">
<summary>
Holds the action that should be performed on the service.
</summary>
<summary>
Holds the action that should be performed on the service.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask._timeout">
<summary>
Holds the time, in milliseconds, the task will wait for a service
to reach the desired status.
</summary>
<summary>
Holds the time, in milliseconds, the task will wait for a service
to reach the desired status.
</summary>
</member>
<member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.ServiceName">
<summary>
The name of the service that should be controlled.
</summary>
<summary>
The name of the service that should be controlled.
</summary>
</member>
<member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.MachineName">
<summary>
The name of the computer on which the service resides. The default
is the local computer.
</summary>
<summary>
The name of the computer on which the service resides. The default
is the local computer.
</summary>
</member>
<member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.Action">
<summary>
The action that should be performed on the service.
</summary>
<summary>
The action that should be performed on the service.
</summary>
</member>
<member name="P:NAnt.MSNet.Tasks.ServiceControllerTask.Timeout">
<summary>
The time, in milliseconds, the task will wait for the service to
reach the desired status. The default is 5000 milliseconds.
</summary>
<summary>
The time, in milliseconds, the task will wait for the service to
reach the desired status. The default is 5000 milliseconds.
</summary>
</member>
<member name="T:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType">
<summary>
Defines the actions that can be performed on a service.
</summary>
<summary>
Defines the actions that can be performed on a service.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Start">
<summary>
Starts a service.
</summary>
<summary>
Starts a service.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Stop">
<summary>
Stops a service.
</summary>
<summary>
Stops a service.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Restart">
<summary>
Restarts a service.
</summary>
<summary>
Restarts a service.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Pause">
<summary>
Pauses a running service.
</summary>
<summary>
Pauses a running service.
</summary>
</member>
<member name="F:NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.Continue">
<summary>
Continues a paused service.
</summary>
<summary>
Continues a paused service.
</summary>
</member>
</members>
</doc>

View File

@@ -5,31 +5,31 @@
</assembly>
<members>
<member name="T:NAnt.NUnit.Types.FormatterData">
<summary>
Carries data specified through the formatter element.
</summary>
<summary>
Carries data specified through the formatter element.
</summary>
</member>
<member name="P:NAnt.NUnit.Types.FormatterData.Type">
<summary>
Gets or sets the type of the formatter.
</summary>
<value>The type of the formatter.</value>
<summary>
Gets or sets the type of the formatter.
</summary>
<value>The type of the formatter.</value>
</member>
<member name="P:NAnt.NUnit.Types.FormatterData.UseFile">
<summary>
Gets or sets a value indicating whether output should be persisted
to a file.
</summary>
<value>
<see langword="true" /> if output should be written to a file; otherwise,
<see langword="false" />. The default is <see langword="false" />.
</value>
<summary>
Gets or sets a value indicating whether output should be persisted
to a file.
</summary>
<value>
<see langword="true" /> if output should be written to a file; otherwise,
<see langword="false" />. The default is <see langword="false" />.
</value>
</member>
<member name="P:NAnt.NUnit.Types.FormatterData.Extension">
<summary>
Gets or sets the extension to append to the output filename.
</summary>
<value>The extension to append to the output filename.</value>
<summary>
Gets or sets the extension to append to the output filename.
</summary>
<value>The extension to append to the output filename.</value>
</member>
<member name="P:NAnt.NUnit.Types.FormatterData.OutputDirectory">
<summary>
@@ -92,11 +92,11 @@
</returns>
</member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.CopyTo(NAnt.NUnit.Types.FormatterData[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.IndexOf(NAnt.NUnit.Types.FormatterData)">
<summary>
@@ -129,10 +129,10 @@
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterData"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.NUnit.Types.FormatterDataCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
</member>
<member name="T:NAnt.NUnit.Types.FormatterDataEnumerator">
<summary>
@@ -147,64 +147,64 @@
<param name="arguments">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.NUnit.Types.FormatterDataEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.NUnit.Types.FormatterDataEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.NUnit.Types.FormatterDataEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
<member name="T:NAnt.NUnit.Types.FormatterType">
<summary>
The built-in formatter types.
</summary>
<summary>
The built-in formatter types.
</summary>
</member>
<member name="F:NAnt.NUnit.Types.FormatterType.Plain">
<summary>
A plaintext formatter.
</summary>
<summary>
A plaintext formatter.
</summary>
</member>
<member name="F:NAnt.NUnit.Types.FormatterType.Xml">
<summary>
An XML formatter.
</summary>
<summary>
An XML formatter.
</summary>
</member>
<member name="T:NAnt.NUnit.Types.FormatterElement">
<summary>
Represents the FormatterElement of the NUnit task.
</summary>
<summary>
Represents the FormatterElement of the NUnit task.
</summary>
</member>
<member name="P:NAnt.NUnit.Types.FormatterElement.Type">
<summary>
Type of formatter.
</summary>
<summary>
Type of formatter.
</summary>
</member>
<member name="P:NAnt.NUnit.Types.FormatterElement.Extension">
<summary>
Extension to append to the output filename.
</summary>
<summary>
Extension to append to the output filename.
</summary>
</member>
<member name="P:NAnt.NUnit.Types.FormatterElement.UseFile">
<summary>
Determines whether output should be persisted to a file. The default
is <see langword="false" />.
</summary>
<summary>
Determines whether output should be persisted to a file. The default
is <see langword="false" />.
</summary>
</member>
<member name="P:NAnt.NUnit.Types.FormatterElement.OutputDirectory">
<summary>
@@ -271,11 +271,11 @@
</returns>
</member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.CopyTo(NAnt.NUnit.Types.FormatterElement[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.IndexOf(NAnt.NUnit.Types.FormatterElement)">
<summary>
@@ -308,10 +308,10 @@
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterElement"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.NUnit.Types.FormatterElementCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
</member>
<member name="T:NAnt.NUnit.Types.FormatterElementEnumerator">
<summary>
@@ -326,28 +326,28 @@
<param name="arguments">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.NUnit.Types.FormatterElementEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.NUnit.Types.FormatterElementEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.NUnit.Types.FormatterElementEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
</members>
</doc>

View File

@@ -5,14 +5,14 @@
</assembly>
<members>
<member name="M:NAnt.NUnit1.Types.IResultFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
<summary>
The whole test suite started.
</summary>
<summary>
The whole test suite started.
</summary>
</member>
<member name="M:NAnt.NUnit1.Types.IResultFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
<summary>
The whole test suite ended.
</summary>
<summary>
The whole test suite ended.
</summary>
</member>
<member name="M:NAnt.NUnit1.Types.IResultFormatter.SetOutput(System.IO.TextWriter)">
<summary>
@@ -72,11 +72,11 @@
</returns>
</member>
<member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.CopyTo(NAnt.NUnit1.Types.IResultFormatter[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.NUnit1.Types.IResultFormatterCollection.IndexOf(NAnt.NUnit1.Types.IResultFormatter)">
<summary>
@@ -109,10 +109,10 @@
<param name="item">The <see cref="T:NAnt.NUnit1.Types.IResultFormatter"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.NUnit1.Types.IResultFormatterCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
</member>
<member name="T:NAnt.NUnit1.Types.IResultFormatterEnumerator">
<summary>
@@ -127,42 +127,42 @@
<param name="arguments">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.NUnit1.Types.IResultFormatterEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.NUnit1.Types.IResultFormatterEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.IResultFormatterEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
<member name="T:NAnt.NUnit1.Types.LogFormatter">
<summary>
Prints information about running tests directly to the build log.
</summary>
<summary>
Prints information about running tests directly to the build log.
</summary>
</member>
<member name="M:NAnt.NUnit1.Types.LogFormatter.SetOutput(System.IO.TextWriter)">
<summary>Not used, all output goes to Log class.</summary>
<summary>Not used, all output goes to Log class.</summary>
</member>
<member name="M:NAnt.NUnit1.Types.LogFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
<summary>Called when the whole test suite has started.</summary>
<summary>Called when the whole test suite has started.</summary>
</member>
<member name="M:NAnt.NUnit1.Types.LogFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
<summary>Called when the whole test suite has ended.</summary>
<summary>Called when the whole test suite has ended.</summary>
</member>
<member name="M:NAnt.NUnit1.Types.LogFormatter.FormatError(System.String,System.String)">
<summary>Convert a stack trace line into something that can be clicked on in an IDE output window.</summary>
@@ -207,35 +207,35 @@
</example>
</member>
<member name="P:NAnt.NUnit1.Tasks.NUnitTask.HaltOnError">
<summary>
Stops running tests when a test causes an error. The default is
<see langword="false" />.
</summary>
<remarks>
Implies haltonfailure.
</remarks>
<summary>
Stops running tests when a test causes an error. The default is
<see langword="false" />.
</summary>
<remarks>
Implies haltonfailure.
</remarks>
</member>
<member name="P:NAnt.NUnit1.Tasks.NUnitTask.HaltOnFailure">
<summary>
Stops running tests if a test fails (errors are considered failures
as well). The default is <see langword="false" />.
</summary>
<summary>
Stops running tests if a test fails (errors are considered failures
as well). The default is <see langword="false" />.
</summary>
</member>
<member name="P:NAnt.NUnit1.Tasks.NUnitTask.Timeout">
<summary>
Cancel the individual tests if they do not finish in the specified
time (measured in milliseconds). Ignored if fork is disabled.
</summary>
<summary>
Cancel the individual tests if they do not finish in the specified
time (measured in milliseconds). Ignored if fork is disabled.
</summary>
</member>
<member name="P:NAnt.NUnit1.Tasks.NUnitTask.Tests">
<summary>
Tests to run.
</summary>
<summary>
Tests to run.
</summary>
</member>
<member name="P:NAnt.NUnit1.Tasks.NUnitTask.FormatterElements">
<summary>
Formatters to output results of unit tests.
</summary>
<summary>
Formatters to output results of unit tests.
</summary>
</member>
<member name="T:NAnt.NUnit1.Types.NUnitTest">
<summary>
@@ -243,25 +243,25 @@
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.OutFile">
<summary>
Base name of the test result. The full filename is determined by this
attribute and the extension of formatter.
</summary>
<summary>
Base name of the test result. The full filename is determined by this
attribute and the extension of formatter.
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.ToDir">
<summary>
Directory to write the reports to.
</summary>
<summary>
Directory to write the reports to.
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.Class">
<summary>
Class name of the test.
</summary>
<summary>
Class name of the test.
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.Assembly">
<summary>
Assembly to load the test from.
</summary>
<summary>
Assembly to load the test from.
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.Fork">
<summary>
@@ -269,20 +269,20 @@
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.HaltOnError">
<summary>
Stop the build process if an error occurs during the test run.
</summary>
<summary>
Stop the build process if an error occurs during the test run.
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.HaltOnFailure">
<summary>
Stop the build process if a test fails (errors are considered failures
as well).
</summary>
<summary>
Stop the build process if a test fails (errors are considered failures
as well).
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTest.AppConfigFile">
<summary>
The application configuration file to use for the NUnit test domain.
</summary>
<summary>
The application configuration file to use for the NUnit test domain.
</summary>
</member>
<member name="T:NAnt.NUnit1.Types.NUnitTestCollection">
<summary>
@@ -336,11 +336,11 @@
</returns>
</member>
<member name="M:NAnt.NUnit1.Types.NUnitTestCollection.CopyTo(NAnt.NUnit1.Types.NUnitTest[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.NUnit1.Types.NUnitTestCollection.IndexOf(NAnt.NUnit1.Types.NUnitTest)">
<summary>
@@ -373,10 +373,10 @@
<param name="item">The <see cref="T:NAnt.NUnit1.Types.NUnitTest"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTestCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
</member>
<member name="T:NAnt.NUnit1.Types.NUnitTestEnumerator">
<summary>
@@ -391,98 +391,98 @@
<param name="arguments">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.NUnit1.Types.NUnitTestEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.NUnit1.Types.NUnitTestEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.NUnitTestEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
<member name="T:NAnt.NUnit1.Types.NUnitTestData">
<summary>
Carries data specified through the test element.
</summary>
<summary>
Carries data specified through the test element.
</summary>
</member>
<member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.NeedsRunning">
<summary>
Determines if the unit test needs running.
</summary>
<returns>
<see langword="true" /> if unit test needs running, otherwise,
<see langword="false" />.
</returns>
<remarks>
<para>
Determines if the test needs running by looking at the date stamp
of the test assembly and the test results log.
</para>
</remarks>
<summary>
Determines if the unit test needs running.
</summary>
<returns>
<see langword="true" /> if unit test needs running, otherwise,
<see langword="false" />.
</returns>
<remarks>
<para>
Determines if the test needs running by looking at the date stamp
of the test assembly and the test results log.
</para>
</remarks>
</member>
<member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.Run(System.String,System.Boolean)">
<summary>
Runs a Suite extracted from a TestCase subclass.
</summary>
<summary>
Runs a Suite extracted from a TestCase subclass.
</summary>
</member>
<member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.CreateFormatters(NAnt.NUnit1.Types.NUnitTestData,System.String,System.Boolean)">
<summary>
Creates the formatters to be used when running this test.
</summary>
<summary>
Creates the formatters to be used when running this test.
</summary>
</member>
<member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.GetOutput(NAnt.NUnit.Types.FormatterData,NAnt.NUnit1.Types.NUnitTestData)">
<summary>
Returns the output file or null if does not use a file.
</summary>
<summary>
Returns the output file or null if does not use a file.
</summary>
</member>
<member name="M:NAnt.NUnit1.Tasks.NUnitTestRunner.GetSuite(System.String)">
<summary>
Returns the test suite from a given class.
</summary>
<remarks>
The assemblyQualifiedName parameter needs to be in form:
"full.qualified.class.name,Assembly"
</remarks>
<summary>
Returns the test suite from a given class.
</summary>
<remarks>
The assemblyQualifiedName parameter needs to be in form:
"full.qualified.class.name,Assembly"
</remarks>
</member>
<member name="P:NAnt.NUnit1.Tasks.NUnitTestRunner.Formatters">
<summary>
Gets the collection of registered formatters.
</summary>
<value>Collection of registered formatters.</value>
<summary>
Gets the collection of registered formatters.
</summary>
<value>Collection of registered formatters.</value>
</member>
<member name="P:NAnt.NUnit1.Tasks.NUnitTestRunner.ResultCode">
<summary>
Gets the result of the test.
</summary>
<value>The result of the test.</value>
<summary>
Gets the result of the test.
</summary>
<value>The result of the test.</value>
</member>
<member name="T:NAnt.NUnit1.Types.PlainTextFormatter">
<summary>
Prints information about running tests in plain text.
</summary>
<summary>
Prints information about running tests in plain text.
</summary>
</member>
<member name="M:NAnt.NUnit1.Types.PlainTextFormatter.SetOutput(System.IO.TextWriter)">
<summary>Sets the Writer the formatter is supposed to write its results to.</summary>
<summary>Sets the Writer the formatter is supposed to write its results to.</summary>
</member>
<member name="M:NAnt.NUnit1.Types.PlainTextFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
<summary>Called when the whole test suite has started.</summary>
<summary>Called when the whole test suite has started.</summary>
</member>
<member name="M:NAnt.NUnit1.Types.PlainTextFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
<summary>Called when the whole test suite has ended.</summary>
<summary>Called when the whole test suite has ended.</summary>
</member>
<member name="M:NAnt.NUnit1.Types.PlainTextFormatter.FormatError(System.String,System.String)">
<summary>Convert a stack trace line into something that can be clicked on in an IDE output window.</summary>
@@ -502,15 +502,15 @@
</summary>
</member>
<member name="P:NAnt.NUnit1.Types.TestResultExtra.RunTime">
<summary>
Gets or sets the total run-time of a test.
</summary>
<value>The total run-time of a test.</value>
<summary>
Gets or sets the total run-time of a test.
</summary>
<value>The total run-time of a test.</value>
</member>
<member name="T:NAnt.NUnit1.Types.XmlResultFormatter">
<summary>
Prints detailed information about running tests in XML format.
</summary>
<summary>
Prints detailed information about running tests in XML format.
</summary>
</member>
<member name="M:NAnt.NUnit1.Types.XmlResultFormatter.#ctor">
<summary>
@@ -525,14 +525,14 @@
</summary>
</member>
<member name="M:NAnt.NUnit1.Types.XmlResultFormatter.StartTestSuite(NAnt.NUnit1.Types.NUnitTestData)">
<summary>
Called when the whole test suite has started.
</summary>
<summary>
Called when the whole test suite has started.
</summary>
</member>
<member name="M:NAnt.NUnit1.Types.XmlResultFormatter.EndTestSuite(NAnt.NUnit1.Types.TestResultExtra)">
<summary>
Called when the whole test suite has ended.
</summary>
<summary>
Called when the whole test suite has ended.
</summary>
</member>
</members>
</doc>

View File

@@ -34,36 +34,36 @@
</example>
</member>
<member name="P:NAnt.NUnit2.Types.Categories.Includes">
<summary>
Specifies a list of categories to include.
</summary>
<summary>
Specifies a list of categories to include.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.Categories.Excludes">
<summary>
Specifies a list of categories to exclude.
</summary>
<summary>
Specifies a list of categories to exclude.
</summary>
</member>
<member name="T:NAnt.NUnit2.Types.Category">
<summary>
Represents a certain group of test cases or fixtures.
</summary>
<summary>
Represents a certain group of test cases or fixtures.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.Category.CategoryName">
<summary>
A name of a category, or comma-separated list of names.
</summary>
<summary>
A name of a category, or comma-separated list of names.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.Category.IfDefined">
<summary>
If <see langword="true" /> then the category will be processed;
otherwise, skipped. The default is <see langword="true" />.
</summary>
<summary>
If <see langword="true" /> then the category will be processed;
otherwise, skipped. The default is <see langword="true" />.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.Category.UnlessDefined">
<summary>
If <see langword="true" /> then the category will be skipped;
otherwise, processed. The default is <see langword="false" />.
</summary>
<summary>
If <see langword="true" /> then the category will be skipped;
otherwise, processed. The default is <see langword="false" />.
</summary>
</member>
<member name="T:NAnt.NUnit2.Types.CategoryCollection">
<summary>
@@ -75,17 +75,33 @@
Initializes a new instance of the <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/> class.
</summary>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.#ctor(System.Collections.Generic.IList{NAnt.NUnit2.Types.Category})">
<summary>
Initializes a new instance of the
<see cref="T:NAnt.NUnit2.Types.CategoryCollection"/> class as a wrapper for
the specified list.
</summary>
<param name="value">
The list that is wrapped by the newly created instance.
</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.#ctor(NAnt.NUnit2.Types.CategoryCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/> class
with the specified <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/> instance.
</summary>
<param name="value">
The collection to use to initialize the new instance with.
</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.#ctor(NAnt.NUnit2.Types.Category[])">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/> class
with the specified array of <see cref="T:NAnt.NUnit2.Types.Category"/> instances.
</summary>
<param name="value">
The collection to use to initialize the new instance with.
</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.ToString">
<summary>
@@ -96,89 +112,15 @@
<see cref="T:System.String"/> if there are no categories.
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.Add(NAnt.NUnit2.Types.Category)">
<member name="M:NAnt.NUnit2.Types.CategoryCollection.AddRange(System.Collections.Generic.IEnumerable{NAnt.NUnit2.Types.Category})">
<summary>
Adds a <see cref="T:NAnt.NUnit2.Types.Category"/> to the end of the collection.
Adds the elements of a <see cref="T:NAnt.NUnit2.Types.Category"/> array to the end of the
collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit2.Types.Category"/> to be added to the end of the collection.</param>
<returns>The position into which the new element was inserted.</returns>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.AddRange(NAnt.NUnit2.Types.Category[])">
<summary>
Adds the elements of a <see cref="T:NAnt.NUnit2.Types.Category"/> array to the end of the collection.
</summary>
<param name="items">The array of <see cref="T:NAnt.NUnit2.Types.Category"/> elements to be added to the end of the collection.</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.AddRange(NAnt.NUnit2.Types.CategoryCollection)">
<summary>
Adds the elements of a <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/> to the end of the collection.
</summary>
<param name="items">The <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/> to be added to the end of the collection.</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.Contains(NAnt.NUnit2.Types.Category)">
<summary>
Determines whether a <see cref="T:NAnt.NUnit2.Types.Category"/> is in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit2.Types.Category"/> to locate in the collection.</param>
<returns>
<see langword="true"/> if <paramref name="item"/> is found in the
collection; otherwise, <see langword="false"/>.
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.Contains(System.String)">
<summary>
Determines whether a <see cref="T:NAnt.NUnit2.Types.Category"/> with the specified
value is in the collection.
</summary>
<param name="value">The argument value to locate in the collection.</param>
<returns>
<see langword="true"/> if a <see cref="T:NAnt.NUnit2.Types.Category"/> with value
<paramref name="value"/> is found in the collection; otherwise,
<see langword="false"/>.
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.CopyTo(NAnt.NUnit2.Types.Category[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.IndexOf(NAnt.NUnit2.Types.Category)">
<summary>
Retrieves the index of a specified <see cref="T:NAnt.NUnit2.Types.Category"/> object in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit2.Types.Category"/> object for which the index is returned.</param>
<returns>
The index of the specified <see cref="T:NAnt.NUnit2.Types.Category"/>. If the <see cref="T:NAnt.NUnit2.Types.Category"/> is not currently a member of the collection, it returns -1.
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.Insert(System.Int32,NAnt.NUnit2.Types.Category)">
<summary>
Inserts a <see cref="T:NAnt.NUnit2.Types.Category"/> into the collection at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
<param name="item">The <see cref="T:NAnt.NUnit2.Types.Category"/> to insert.</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>
A <see cref="T:NAnt.NUnit2.Types.CategoryEnumerator"/> for the entire collection.
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryCollection.Remove(NAnt.NUnit2.Types.Category)">
<summary>
Removes a member from the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit2.Types.Category"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.NUnit2.Types.CategoryCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<param name="items">
The array of <see cref="T:NAnt.NUnit2.Types.Category"/> elements to be added to the end of
the collection.
</param>
</member>
<member name="P:NAnt.NUnit2.Types.CategoryCollection.Item(System.String)">
<summary>
@@ -186,45 +128,9 @@
</summary>
<param name="value">The name of the <see cref="T:NAnt.NUnit2.Types.Category"/> to get.</param>
</member>
<member name="T:NAnt.NUnit2.Types.CategoryEnumerator">
<summary>
Enumerates the <see cref="T:NAnt.NUnit2.Types.Category"/> elements of a <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/>.
</summary>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryEnumerator.#ctor(NAnt.NUnit2.Types.CategoryCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit2.Types.CategoryEnumerator"/> class
with the specified <see cref="T:NAnt.NUnit2.Types.CategoryCollection"/>.
</summary>
<param name="arguments">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.CategoryEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.CategoryEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
<member name="T:NAnt.NUnit2.Tasks.NUnit2Task">
<summary>
Runs tests using the NUnit V2.2 framework.
Runs tests using the NUnit V2.6 framework.
</summary>
<remarks>
<para>
@@ -303,24 +209,50 @@
</example>
</member>
<member name="M:NAnt.NUnit2.Tasks.NUnit2Task.ExecuteTask">
<summary>
Runs the tests and sets up the formatters.
</summary>
<summary>
Runs the tests and sets up the formatters.
</summary>
</member>
<member name="M:NAnt.NUnit2.Tasks.NUnit2Task.GetListener(NAnt.Core.LogWriter)">
<summary>
Gets a new EventListener to use for the unit tests.
</summary>
<returns>
A new EventListener created with a new EventCollector that
is initialized with <paramref name="logWriter"/>.
</returns>
<param name='logWriter'>
Log writer to send test output to.
</param>
</member>
<member name="M:NAnt.NUnit2.Tasks.NUnit2Task.GetLoggingThreshold">
<summary>
Gets the logging threshold to use for a test runner based on
the current threshold of this task.
</summary>
<returns>
The logging threshold to use when running a test runner.
</returns>
</member>
<member name="P:NAnt.NUnit2.Tasks.NUnit2Task.HaltOnFailure">
<summary>
Stop the test run if a test fails. The default is <see langword="false" />.
</summary>
<summary>
Stop the test run if a test fails. The default is <see langword="false" />.
</summary>
</member>
<member name="P:NAnt.NUnit2.Tasks.NUnit2Task.Labels">
<summary>
Indicate whether or not to label the text output as the tests run.
</summary>
</member>
<member name="P:NAnt.NUnit2.Tasks.NUnit2Task.Tests">
<summary>
Tests to run.
</summary>
<summary>
Tests to run.
</summary>
</member>
<member name="P:NAnt.NUnit2.Tasks.NUnit2Task.FormatterElements">
<summary>
Formatters to output results of unit tests.
</summary>
<summary>
Formatters to output results of unit tests.
</summary>
</member>
<member name="T:NAnt.NUnit2.Types.NUnit2Test">
<summary>
@@ -328,35 +260,35 @@
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.AssemblyFile">
<summary>
Name of the assembly to search for tests.
</summary>
<summary>
Name of the assembly to search for tests.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.TestName">
<summary>
Name of a specific testfixture to run. If not specified then all
testfixtures are run.
</summary>
<summary>
Name of a specific testfixture to run. If not specified then all
testfixtures are run.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.Assemblies">
<summary>
Assemblies to include in test.
</summary>
<summary>
Assemblies to include in test.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.References">
<summary>
Assemblies to scan for missing assembly references.
</summary>
<summary>
Assemblies to scan for missing assembly references.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.Categories">
<summary>
Categories of test cases to include or exclude.
</summary>
<summary>
Categories of test cases to include or exclude.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.HaltOnFailure">
<summary>
Build fails on failure. The default is <see langword="true" />.
</summary>
<summary>
Build fails on failure. The default is <see langword="true" />.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.XsltFile">
<summary>
@@ -365,19 +297,19 @@
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.AppConfigFile">
<summary>
The application configuration file to use for the NUnit test domain.
If not specified, NAnt will try to use a configuration name matching
the file name of the assembly with extension ".config".
</summary>
<summary>
The application configuration file to use for the NUnit test domain.
If not specified, NAnt will try to use a configuration name matching
the file name of the assembly with extension ".config".
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2Test.TestAssemblies">
<summary>
Gets all assemblies specified for these tests.
</summary>
<returns>
All assemblies specified for these tests.
</returns>
<summary>
Gets all assemblies specified for these tests.
</summary>
<returns>
All assemblies specified for these tests.
</returns>
</member>
<member name="T:NAnt.NUnit2.Types.NUnit2TestCollection">
<summary>
@@ -431,11 +363,11 @@
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.NUnit2TestCollection.CopyTo(NAnt.NUnit2.Types.NUnit2Test[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array"/> at which copying begins.</param>
</member>
<member name="M:NAnt.NUnit2.Types.NUnit2TestCollection.IndexOf(NAnt.NUnit2.Types.NUnit2Test)">
<summary>
@@ -468,10 +400,10 @@
<param name="item">The <see cref="T:NAnt.NUnit2.Types.NUnit2Test"/> to remove from the collection.</param>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2TestCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param>
</member>
<member name="T:NAnt.NUnit2.Types.NUnit2TestEnumerator">
<summary>
@@ -486,34 +418,34 @@
<param name="arguments">The collection that should be enumerated.</param>
</member>
<member name="M:NAnt.NUnit2.Types.NUnit2TestEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns>
</member>
<member name="M:NAnt.NUnit2.Types.NUnit2TestEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary>
</member>
<member name="P:NAnt.NUnit2.Types.NUnit2TestEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns>
</member>
<member name="T:NAnt.NUnit2.Tasks.NUnit2TestDomain">
<summary>
Custom TestDomain, similar to the one included with NUnit, in order
to workaround some limitations in it.
</summary>
<summary>
Custom TestDomain, similar to the one included with NUnit, in order
to workaround some limitations in it.
</summary>
</member>
<member name="M:NAnt.NUnit2.Tasks.NUnit2TestDomain.#ctor">
<summary>
@@ -522,20 +454,20 @@
</summary>
</member>
<member name="M:NAnt.NUnit2.Tasks.NUnit2TestDomain.CreateRunner(System.IO.FileInfo,System.IO.FileInfo,System.Collections.Specialized.StringCollection)">
<summary>
Runs a single testcase.
</summary>
<param name="assemblyFile">The test assembly.</param>
<param name="configFile">The application configuration file for the test domain.</param>
<param name="referenceAssemblies">List of files to scan for missing assembly references.</param>
<returns>
The result of the test.
</returns>
<summary>
Runs a single testcase.
</summary>
<param name="assemblyFile">The test assembly.</param>
<param name="configFile">The application configuration file for the test domain.</param>
<param name="referenceAssemblies">List of files to scan for missing assembly references.</param>
<returns>
The result of the test.
</returns>
</member>
<member name="T:NAnt.NUnit2.Tasks.NUnit2TestDomain.AssemblyResolveHandler">
<summary>
Helper class called when an assembly resolve event is raised.
</summary>
<summary>
Helper class called when an assembly resolve event is raised.
</summary>
</member>
<member name="M:NAnt.NUnit2.Tasks.NUnit2TestDomain.AssemblyResolveHandler.#ctor(System.String[],System.String[])">
<summary>
@@ -564,21 +496,21 @@
<param name="args">An <see cref="T:System.AssemblyLoadEventArgs"/> that contains the event data.</param>
</member>
<member name="F:NAnt.NUnit2.Tasks.NUnit2TestDomain.AssemblyResolveHandler._probePaths">
<summary>
Holds the list of directories that will be scanned for missing
assembly references.
</summary>
<summary>
Holds the list of directories that will be scanned for missing
assembly references.
</summary>
</member>
<member name="F:NAnt.NUnit2.Tasks.NUnit2TestDomain.AssemblyResolveHandler._referenceAssemblies">
<summary>
Holds the list of assemblies that can be scanned for missing
assembly references.
</summary>
<summary>
Holds the list of assemblies that can be scanned for missing
assembly references.
</summary>
</member>
<member name="F:NAnt.NUnit2.Tasks.NUnit2TestDomain.AssemblyResolveHandler._assemblyCache">
<summary>
Holds the loaded assemblies.
</summary>
<summary>
Holds the loaded assemblies.
</summary>
</member>
</members>
</doc>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -11,47 +11,47 @@
</summary>
</member>
<member name="M:NAnt.Console.ConsoleStub.Main(System.String[])">
<summary>
Entry point for executable
</summary>
<param name="args">Command Line arguments</param>
<returns>The result of the real execution</returns>
<summary>
Entry point for executable
</summary>
<param name="args">Command Line arguments</param>
<returns>The result of the real execution</returns>
</member>
<member name="M:NAnt.Console.ConsoleStub.ConstructPrivateBinPath(NAnt.Console.ConsoleStub.Framework,System.String)">
<summary>
Constructs the privatebinpath.
</summary>
<remarks>
<para>
For the common version dir, we do not use the framework version
as defined in the NAnt configuration file but the CLR version
since the assemblies in that directory are not specific to a
certain family and the framwork version might differ between
families (eg. mono 1.0 == .NET 1.1).
</para>
</remarks>
<param name="runtimeFramework">The runtime framework.</param>
<param name="baseDir">The base directory of the domain.</param>
<returns>
The privatebinpath.
</returns>
<summary>
Constructs the privatebinpath.
</summary>
<remarks>
<para>
For the common version dir, we do not use the framework version
as defined in the NAnt configuration file but the CLR version
since the assemblies in that directory are not specific to a
certain family and the framwork version might differ between
families (eg. mono 1.0 == .NET 1.1).
</para>
</remarks>
<param name="runtimeFramework">The runtime framework.</param>
<param name="baseDir">The base directory of the domain.</param>
<returns>
The privatebinpath.
</returns>
</member>
<member name="M:NAnt.Console.ConsoleStub.GetRelativePath(System.String,System.String)">
<summary>
Given an absolute directory and an absolute file name, returns a
relative file name.
</summary>
<param name="basePath">An absolute directory.</param>
<param name="absolutePath">An absolute file name.</param>
<returns>
A relative file name for the given absolute file name.
</returns>
<summary>
Given an absolute directory and an absolute file name, returns a
relative file name.
</summary>
<param name="basePath">An absolute directory.</param>
<param name="absolutePath">An absolute file name.</param>
<returns>
A relative file name for the given absolute file name.
</returns>
</member>
<member name="T:NAnt.Console.ConsoleStub.HelperArguments">
<summary>
Helper class for invoking the application entry point in NAnt.Core
and passing the command-line arguments.
</summary>
<summary>
Helper class for invoking the application entry point in NAnt.Core
and passing the command-line arguments.
</summary>
</member>
<member name="M:NAnt.Console.ConsoleStub.HelperArguments.#ctor(System.String[],System.String)">
<summary>
@@ -62,17 +62,17 @@
<param name="probePaths">Directories relative to the base directory of the AppDomain to probe for missing assembly references.</param>
</member>
<member name="M:NAnt.Console.ConsoleStub.HelperArguments.CallConsoleRunner">
<summary>
Invokes the application entry point in NAnt.Core.
</summary>
<summary>
Invokes the application entry point in NAnt.Core.
</summary>
</member>
<member name="P:NAnt.Console.ConsoleStub.HelperArguments.ExitCode">
<summary>
Gets the status that the build process returned when it exited.
</summary>
<value>
The code that the build process specified when it terminated.
</value>
<summary>
Gets the status that the build process returned when it exited.
</summary>
<value>
The code that the build process specified when it terminated.
</value>
</member>
</members>
</doc>

View File

@@ -21,16 +21,92 @@
True, if it is msbuild project, False otherwise.
</returns>
</member>
<member name="M:NAnt.MSBuild.NAntLogger.Initialize(Microsoft.Build.Framework.IEventSource)">
<summary>
Initialize is guaranteed to be called by MSBuild at the start of the build
before any events are raised.
</summary>
</member>
<member name="T:NAnt.VSNet.WhidbeySolution">
<summary>
Analyses Microsoft Visual Studio .NET 2005 (Whidbey) solution files.
</summary>
</member>
<member name="T:NAnt.VSNet.OrcasSolution">
<summary>
Analyses Microsoft Visual Studio .NET 2008 (Orcas) solution files.
</summary>
</member>
<member name="T:NAnt.VSNet.RosarioSolution">
<summary>
Analyses Microsoft Visual Studio .NET 2010 (Rosario) solution files.
</summary>
</member>
<member name="M:NAnt.MSBuild.MSBuildProject.DetermineProductVersion(System.Xml.XmlElement)">
<summary>
Determines the version of the target msbuild file.
</summary>
<remarks>
<para>
This method identifies the msbuild version by reviewing the following tags in order:
</para>
<list type="number">
<item>
<description>&lt;ProductVersion&gt;</description>
</item>
<item>
<description>&lt;TargetFrameworkVersion&gt;</description>
</item>
<item>
<description>ToolsVersion attribute</description>
</item>
</list>
</remarks>
<param name="docElement">
A <see cref="T:System.Xml.XmlElement"/> representing the msbuild project file.
</param>
<returns>
A <see cref="T:NAnt.VSNet.ProductVersion"/> enum value indicating the msbuild project
file version.
</returns>
<exception cref="T:NAnt.Core.BuildException">
version string found in the tags listed above is not recognized.
</exception>
</member>
<member name="T:NAnt.MSBuild.NAntLoggerVerbosity">
<summary>
Enum indicating the level of verbosity for the NAnt logger.
</summary>
</member>
<member name="F:NAnt.MSBuild.NAntLoggerVerbosity.Quiet">
<summary>Indicates no output</summary>
</member>
<member name="F:NAnt.MSBuild.NAntLoggerVerbosity.Minimal">
<summary>Indicates little output</summary>
</member>
<member name="F:NAnt.MSBuild.NAntLoggerVerbosity.Normal">
<summary>Indicates normal output</summary>
</member>
<member name="F:NAnt.MSBuild.NAntLoggerVerbosity.Detailed">
<summary>Indicates detailed output</summary>
</member>
<member name="F:NAnt.MSBuild.NAntLoggerVerbosity.Diagnostic">
<summary>Indicates all output</summary>
</member>
<member name="T:NAnt.MSBuild.NAntLogger">
<summary>
Logger classed used for MSBuild tasks in NAnt.
</summary>
</member>
<member name="T:NAnt.MSBuild.NAntLogger.DummyTask">
<summary>Sample task used for testing.</summary>
</member>
<member name="M:NAnt.MSBuild.NAntLogger.DummyTask.#ctor(NAnt.Core.Project,System.String)">
<summary>
Sample task constructor.
</summary>
<param name="p">Project to assign task to.</param>
<param name="name">Sample name property.</param>
</member>
<member name="M:NAnt.MSBuild.NAntLogger.DummyTask.ExecuteTask">
<summary>Test method.</summary>
</member>
<member name="P:NAnt.MSBuild.NAntLogger.DummyTask.Name">
<summary>Gets sample name for task.</summary>
</member>
</members>
</doc>

View File

@@ -1,75 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Compression.Tasks.ExpandBaseTask-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>ExpandBaseTask Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> ExpandBaseTask</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>ExpandBaseTask</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Summary description for ExpandTask. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">overwrite</td>
<td style="text-align: center;">bool</td>
<td> Overwrite files, even if they are newer than the corresponding entries in the archive. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">failonerror</td>
<td style="text-align: center;">bool</td>
<td> Determines if task failure stops the build, or is just reported. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the task will be executed; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the task will be executed; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">verbose</td>
<td style="text-align: center;">bool</td>
<td> Determines whether the task should report detailed build log messages. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.CompressionTasks (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,57 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.DataTypeBase-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>DataTypeBase Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> DataTypeBase</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>DataTypeBase</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Provides the abstract base class for types. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">id</td>
<td style="text-align: center;">string</td>
<td> The ID used to be referenced later. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">refid</td>
<td style="text-align: center;">string</td>
<td> The ID to use as the reference. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,30 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Filters.ChainableReader-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>ChainableReader Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> ChainableReader</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>ChainableReader</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Functions as a chainable TextReader </p> Implements a abstraction over a TextReader that allows the class to represent either a TextReader or another ChainableReader to which it is chained. By passing a ChainableReader as a constructor paramater it is possiable to chain many ChainableReaders together. The last ChainableReader in the chain must be based on a TextReader. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div></body>
</html>

View File

@@ -1,57 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Filters.Filter-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>Filter Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> Filter</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>Filter</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Allows a file's content to be modified while performing an operation. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the filter will be used; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the filter will be executed; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,29 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Filters.PhysicalTextReader-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>PhysicalTextReader Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> PhysicalTextReader</td>
<td class="NavBar-Cell" align="right">
v0.85</td>
</tr>
</table>
<h1>PhysicalTextReader</h1>
<p> Represents a physical <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemIOTextReaderClassTopic.asp">TextReader</a>. That is a reader based on a stream. </p> Used by <a href="../elements/NAnt.Core.Filters.ChainableReader.html">ChainableReader</a> to represent a <a href="../elements/NAnt.Core.Filters.Filter.html">Filter</a> based on a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemIOTextReaderClassTopic.asp">TextReader</a> in the chain. <h3>Parameters</h3><div class="table"><table><tr><th>Attribute</th><th style="text-align: center;">Type</th><th>Description</th><th style="text-align: center;">Required</th></tr><tr><td valign="top">if</td><td style="text-align: center;">bool</td><td> If <b>true</b> then the filter will be used; otherwise, skipped. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">unless</td><td style="text-align: center;">bool</td><td> Opposite of <code>if</code>. If <b>false</b> then the filter will be executed; otherwise, skipped. The default is <b>false</b>. </td><td style="text-align: center;">False</td></tr></table></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.85.2478.0)
</div></body>
</html>

View File

@@ -1,82 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Target-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>Target Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> Target</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>Target</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p>
</p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top" class="required">name</td>
<td style="text-align: center;">string</td>
<td> The name of the target. <p style="font-weight: bold;">
This attribute's properties will not be automatically expanded!
</p></td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top">depends</td>
<td style="text-align: center;">string</td>
<td> Space separated list of targets that this target depends on. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">description</td>
<td style="text-align: center;">string</td>
<td> The description of the target. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">string</td>
<td> If <b>true</b> then the target will be executed; otherwise, skipped. The default is <b>true</b>. <p style="font-weight: bold;">
This attribute's properties will not be automatically expanded!
</p></td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">string</td>
<td> Opposite of <code>IfDefined</code>. If <b>false</b> then the target will be executed; otherwise, skipped. The default is <b>false</b>. <p style="font-weight: bold;">
This attribute's properties will not be automatically expanded!
</p></td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,30 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Task-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>Task Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> Task</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>Task</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Provides the abstract base class for tasks. </p> A task is a piece of code that can be executed. <h3>Parameters</h3><div class="table"><table><tr><th>Attribute</th><th style="text-align: center;">Type</th><th>Description</th><th style="text-align: center;">Required</th></tr><tr><td valign="top">failonerror</td><td style="text-align: center;">bool</td><td> Determines if task failure stops the build, or is just reported. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">if</td><td style="text-align: center;">bool</td><td> If <b>true</b> then the task will be executed; otherwise, skipped. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">unless</td><td style="text-align: center;">bool</td><td> Opposite of <code>if</code>. If <b>false</b> then the task will be executed; otherwise, skipped. The default is <b>false</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">verbose</td><td style="text-align: center;">bool</td><td> Determines whether the task should report detailed build log messages. The default is <b>false</b>. </td><td style="text-align: center;">False</td></tr></table></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div></body>
</html>

View File

@@ -1,69 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.TaskContainer-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>TaskContainer Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> TaskContainer</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>TaskContainer</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Executes embedded tasks in the order in which they are defined. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">failonerror</td>
<td style="text-align: center;">bool</td>
<td> Determines if task failure stops the build, or is just reported. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the task will be executed; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the task will be executed; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">verbose</td>
<td style="text-align: center;">bool</td>
<td> Determines whether the task should report detailed build log messages. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,133 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Tasks.ExternalProgramBase-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>ExternalProgramBase Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> ExternalProgramBase</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>ExternalProgramBase</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Provides the abstract base class for tasks that execute external applications. </p>
<p> When a <a href="../../sdk/NAnt.Core.Attributes.ProgramLocationAttribute.html">ProgramLocationAttribute</a> is applied to the deriving class and <code>exename</code> does not return an absolute path, then the program to execute will first be searched for in the location specified by <code>LocationType</code>. </p>
<p> If the program does not exist in that location, then the list of tool paths of the current target framework will be scanned in the order in which they are defined in the NAnt configuration file. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">timeout</td>
<td style="text-align: center;">int</td>
<td> The maximum amount of time the application is allowed to execute, expressed in milliseconds. Defaults to no time-out. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">failonerror</td>
<td style="text-align: center;">bool</td>
<td> Determines if task failure stops the build, or is just reported. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the task will be executed; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the task will be executed; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">verbose</td>
<td style="text-align: center;">bool</td>
<td> Determines whether the task should report detailed build log messages. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Framework-configurable parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">exename</td>
<td style="text-align: center;">string</td>
<td> The name of the executable that should be used to launch the external program. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">managed</td>
<td style="text-align: center;">
<a href="../enums/NAnt.Core.Types.ManagedExecution.html">ManagedExecution</a>
</td>
<td> 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. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">useruntimeengine</td>
<td style="text-align: center;">bool</td>
<td>
<i>Deprecated.</i> Specifies whether the external program is a managed application which should be executed using a runtime engine, if configured. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Nested Elements:</h3>
<!--Array-->
<!--NestedElementArray=T:NAnt.Core.Types.Argument-->
<h4>
<a id="arg">
</a>
&lt;arg&gt;
</h4>
<div class="nested-element"> The command-line arguments for the external program. <p> Represents a command-line argument. </p><p> When passed to an external application, the argument will be quoted when appropriate. This does not apply to the <code>line</code> parameter, which is always passed as is. </p><h3>Parameters</h3><div class="table"><table><tr><th>Attribute</th><th style="text-align: center;">Type</th><th>Description</th><th style="text-align: center;">Required</th></tr><tr><td valign="top">dir</td><td style="text-align: center;">directory</td><td> The value for a directory-based command-line argument; will be replaced with the absolute path of the directory. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">file</td><td style="text-align: center;">file</td><td> The name of a file as a single command-line argument; will be replaced with the absolute filename of the file. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">if</td><td style="text-align: center;">bool</td><td> Indicates if the argument should be passed to the external program. If <b>true</b> then the argument will be passed; otherwise, skipped. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">line</td><td style="text-align: center;">string</td><td> List of command-line arguments; will be passed to the executable as is. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">path</td><td style="text-align: center;">&lt;path&gt;</td><td> The value for a PATH-like command-line argument; you can use <code>:</code> or <code>;</code> as path separators and NAnt will convert it to the platform's local conventions, while resolving references to environment variables. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">unless</td><td style="text-align: center;">bool</td><td> Indicates if the argument should not be passed to the external program. If <b>false</b> then the argument will be passed; otherwise, skipped. The default is <b>false</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">value</td><td style="text-align: center;">string</td><td> A single command-line argument; can contain space characters. </td><td style="text-align: center;">False</td></tr></table></div><h3>Nested Elements:</h3><!--Element--><h4><a id="path"></a>
&lt;<a href="../types/path.html">path</a>&gt;
</h4><div class="nested-element"> Sets a single command-line argument and treats it like a PATH - ensures the right separator for the local platform is used. <p /></div><h4><a id="path"></a>
&lt;/<a href="../types/path.html">path</a>&gt;
</h4><h3>Examples</h3><ul class="examples"><li><p> A single command-line argument containing a space character. </p><pre class="code">
&lt;arg value="-l -a" /&gt;
</pre></li><li><p> Two separate command-line arguments. </p><pre class="code">
&lt;arg line="-l -a" /&gt;
</pre></li><li><p> A single command-line argument with the value <code>\dir;\dir2;\dir3</code> on DOS-based systems and <code>/dir:/dir2:/dir3</code> on Unix-like systems. </p><pre class="code">
&lt;arg path="/dir;/dir2:\dir3" /&gt;
</pre></li></ul></div>
<h4>
<a id="arg">
</a>
&lt;/arg&gt;
</h4>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,50 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Tasks.InElement-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>InElement Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> InElement</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>InElement</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p>
</p>
<h3>Nested Elements:</h3>
<!--Element-->
<h4>
<a id="items">
</a>
&lt;<a href="../types/fileset.html">items</a>&gt;
</h4>
<div class="nested-element">
<p />
</div>
<h4>
<a id="items">
</a>
&lt;/<a href="../types/fileset.html">items</a>&gt;
</h4>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,122 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.Argument-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>&lt;arg&gt; Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> &lt;arg&gt;</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>&lt;arg&gt;</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Represents a command-line argument. </p>
<p> When passed to an external application, the argument will be quoted when appropriate. This does not apply to the <code>line</code> parameter, which is always passed as is. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">dir</td>
<td style="text-align: center;">directory</td>
<td> The value for a directory-based command-line argument; will be replaced with the absolute path of the directory. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">file</td>
<td style="text-align: center;">file</td>
<td> The name of a file as a single command-line argument; will be replaced with the absolute filename of the file. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the argument should be passed to the external program. If <b>true</b> then the argument will be passed; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">line</td>
<td style="text-align: center;">string</td>
<td> List of command-line arguments; will be passed to the executable as is. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">path</td>
<td style="text-align: center;">&lt;path&gt;</td>
<td> The value for a PATH-like command-line argument; you can use <code>:</code> or <code>;</code> as path separators and NAnt will convert it to the platform's local conventions, while resolving references to environment variables. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the argument should not be passed to the external program. If <b>false</b> then the argument will be passed; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">value</td>
<td style="text-align: center;">string</td>
<td> A single command-line argument; can contain space characters. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Nested Elements:</h3>
<!--Element-->
<h4>
<a id="path">
</a>
&lt;<a href="../types/path.html">path</a>&gt;
</h4>
<div class="nested-element"> Sets a single command-line argument and treats it like a PATH - ensures the right separator for the local platform is used. <p /></div>
<h4>
<a id="path">
</a>
&lt;/<a href="../types/path.html">path</a>&gt;
</h4>
<h3>Examples</h3>
<ul class="examples">
<li>
<p> A single command-line argument containing a space character. </p>
<pre class="code">
&lt;arg value="-l -a" /&gt;
</pre>
</li>
<li>
<p> Two separate command-line arguments. </p>
<pre class="code">
&lt;arg line="-l -a" /&gt;
</pre>
</li>
<li>
<p> A single command-line argument with the value <code>\dir;\dir2;\dir3</code> on DOS-based systems and <code>/dir:/dir2:/dir3</code> on Unix-like systems. </p>
<pre class="code">
&lt;arg path="/dir;/dir2:\dir3" /&gt;
</pre>
</li>
</ul>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,66 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.EnvironmentSet-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>&lt;environment&gt; Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> &lt;environment&gt;</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>&lt;environment&gt;</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> A set of environment variables. </p>
<h3>Nested Elements:</h3>
<!--Array-->
<!--NestedElementArray=T:NAnt.Core.Types.Option-->
<h4>
<a id="option">
</a>
&lt;option&gt;
</h4>
<div class="nested-element">
<i>Deprecated.</i> Environment variable to pass to a program. <p> Represents an option. </p><h3>Parameters</h3><div class="table"><table><tr><th>Attribute</th><th style="text-align: center;">Type</th><th>Description</th><th style="text-align: center;">Required</th></tr><tr><td valign="top" class="required">name</td><td style="text-align: center;">string</td><td> Name of the option. </td><td style="text-align: center;">True</td></tr><tr><td valign="top">if</td><td style="text-align: center;">bool</td><td> Indicates if the option should be passed to the task. If <b>true</b> then the option will be passed; otherwise, skipped. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">unless</td><td style="text-align: center;">bool</td><td> Indicates if the option should not be passed to the task. If <b>false</b> then the option will be passed; otherwise, skipped. The default is <b>false</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">value</td><td style="text-align: center;">string</td><td> Value of the option. The default is a null reference (<b>Nothing</b> in Visual Basic). </td><td style="text-align: center;">False</td></tr></table></div></div>
<h4>
<a id="option">
</a>
&lt;/option&gt;
</h4>
<!--Array-->
<!--NestedElementArray=T:NAnt.Core.Types.EnvironmentVariable-->
<h4>
<a id="variable">
</a>
&lt;variable&gt;
</h4>
<div class="nested-element"> Environment variable to pass to a program. <p> Represents an environment variable. </p><h3>Parameters</h3><div class="table"><table><tr><th>Attribute</th><th style="text-align: center;">Type</th><th>Description</th><th style="text-align: center;">Required</th></tr><tr><td valign="top" class="required">name</td><td style="text-align: center;">string</td><td> The name of the environment variable. </td><td style="text-align: center;">True</td></tr><tr><td valign="top">dir</td><td style="text-align: center;">directory</td><td> The value for a directory-based environment variable. NAnt will convert it to an absolute path. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">file</td><td style="text-align: center;">file</td><td> The value for a file-based environment variable. NAnt will convert it to an absolute filename. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">if</td><td style="text-align: center;">bool</td><td> Indicates if the environment variable should be passed to the external program. If <b>true</b> then the environment variable will be passed; otherwise, skipped. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">path</td><td style="text-align: center;">&lt;path&gt;</td><td> The value for a PATH like environment variable. You can use <code>:</code> or <code>;</code> as path separators and NAnt will convert it to the platform's local conventions. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">unless</td><td style="text-align: center;">bool</td><td> Indicates if the environment variable should not be passed to the external program. If <b>false</b> then the environment variable will be passed; otherwise, skipped. The default is <b>false</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">value</td><td style="text-align: center;">string</td><td> The literal value for the environment variable. </td><td style="text-align: center;">False</td></tr></table></div><h3>Nested Elements:</h3><!--Element--><h4><a id="path"></a>
&lt;<a href="../types/path.html">path</a>&gt;
</h4><div class="nested-element"> Sets a single environment variable and treats it like a PATH - ensures the right separator for the local platform is used. <p /></div><h4><a id="path"></a>
&lt;/<a href="../types/path.html">path</a>&gt;
</h4></div>
<h4>
<a id="variable">
</a>
&lt;/variable&gt;
</h4>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,100 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.EnvironmentVariable-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>&lt;env&gt; Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> &lt;env&gt;</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>&lt;env&gt;</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Represents an environment variable. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top" class="required">name</td>
<td style="text-align: center;">string</td>
<td> The name of the environment variable. </td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top">dir</td>
<td style="text-align: center;">directory</td>
<td> The value for a directory-based environment variable. NAnt will convert it to an absolute path. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">file</td>
<td style="text-align: center;">file</td>
<td> The value for a file-based environment variable. NAnt will convert it to an absolute filename. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the environment variable should be passed to the external program. If <b>true</b> then the environment variable will be passed; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">path</td>
<td style="text-align: center;">&lt;path&gt;</td>
<td> The value for a PATH like environment variable. You can use <code>:</code> or <code>;</code> as path separators and NAnt will convert it to the platform's local conventions. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the environment variable should not be passed to the external program. If <b>false</b> then the environment variable will be passed; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">value</td>
<td style="text-align: center;">string</td>
<td> The literal value for the environment variable. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Nested Elements:</h3>
<!--Element-->
<h4>
<a id="path">
</a>
&lt;<a href="../types/path.html">path</a>&gt;
</h4>
<div class="nested-element"> Sets a single environment variable and treats it like a PATH - ensures the right separator for the local platform is used. <p /></div>
<h4>
<a id="path">
</a>
&lt;/<a href="../types/path.html">path</a>&gt;
</h4>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,64 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.FileSet.Exclude-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>FileSet.Exclude Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> FileSet.Exclude</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>FileSet.Exclude</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p>
</p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top" class="required">name</td>
<td style="text-align: center;">string</td>
<td> The pattern or file name to exclude. </td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the pattern will be excluded; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the pattern will be excluded; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,64 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.FileSet.ExcludesFile-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>FileSet.ExcludesFile Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> FileSet.ExcludesFile</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>FileSet.ExcludesFile</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p>
</p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top" class="required">name</td>
<td style="text-align: center;">file</td>
<td> The name of a file; each line of this file is taken to be a pattern. </td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the patterns will be excluded; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the patterns will be excluded; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,76 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.FileSet.Include-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>FileSet.Include Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> FileSet.Include</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>FileSet.Include</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p>
</p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top" class="required">name</td>
<td style="text-align: center;">string</td>
<td> The pattern or file name to include. </td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top">asis</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the file name will be added to the <a href="../types/fileset.html">&lt;fileset&gt;</a> without pattern matching or checking if the file exists. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">frompath</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the file will be searched for on the path. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the pattern will be included; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the pattern will be included; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,76 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.FileSet.IncludesFile-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>FileSet.IncludesFile Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> FileSet.IncludesFile</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>FileSet.IncludesFile</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p>
</p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">asis</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the patterns in the include file will be added to the <a href="../types/fileset.html">&lt;fileset&gt;</a> without pattern matching or checking if the file exists. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">frompath</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the patterns in the include file will be searched for on the path. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the patterns will be included; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the patterns will be included; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top" class="required">name</td>
<td style="text-align: center;">file</td>
<td> The name of a file; each line of this file is taken to be a pattern. </td>
<td style="text-align: center;">True</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,70 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.Formatter-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>&lt;formatter&gt; Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> &lt;formatter&gt;</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>&lt;formatter&gt;</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p>
</p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top" class="required">pattern</td>
<td style="text-align: center;">string</td>
<td> The string pattern to use to format the property. </td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top" class="required">property</td>
<td style="text-align: center;">string</td>
<td> The name of the NAnt property to set. </td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the formatter should be used to format the timestamp. If <b>true</b> then the formatter will be used; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the formatter should be not used to format the timestamp. If <b>false</b> then the formatter will be used; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,69 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.Option-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>&lt;option&gt; Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> &lt;option&gt;</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>&lt;option&gt;</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Represents an option. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top" class="required">name</td>
<td style="text-align: center;">string</td>
<td> Name of the option. </td>
<td style="text-align: center;">True</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the option should be passed to the task. If <b>true</b> then the option will be passed; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Indicates if the option should not be passed to the task. If <b>false</b> then the option will be passed; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">value</td>
<td style="text-align: center;">string</td>
<td> Value of the option. The default is a null reference (<b>Nothing</b> in Visual Basic). </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

View File

@@ -1,75 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Documenting T:NAnt.Core.Types.PathElement-->
<head>
<meta http-equiv="Content-Language" content="en-ca" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../style.css" />
<title>&lt;pathelement&gt; Element</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="2" class="NavBar">
<tr>
<td class="NavBar-Cell">
<a href="http://nant.sourceforge.net">
<b>NAnt</b>
</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<a href="../index.html">Help</a>
<img alt="-&gt;" src="../images/arrow.gif" />
<span>Element Reference</span>
<img alt="-&gt;" src="../images/arrow.gif" /> &lt;pathelement&gt;</td>
<td class="NavBar-Cell" align="right">
v0.91-alpha2</td>
</tr>
</table>
<h1>&lt;pathelement&gt;</h1>
<p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
<p> Represents a nested path element. </p>
<h3>Parameters</h3>
<div class="table">
<table>
<tr>
<th>Attribute</th>
<th style="text-align: center;">Type</th>
<th>Description</th>
<th style="text-align: center;">Required</th>
</tr>
<tr>
<td valign="top">dir</td>
<td style="text-align: center;">directory</td>
<td> The name of a directory to add to the path. Will be replaced with the absolute path of the directory. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">file</td>
<td style="text-align: center;">file</td>
<td> The name of a file to add to the path. Will be replaced with the absolute path of the file. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">if</td>
<td style="text-align: center;">bool</td>
<td> If <b>true</b> then the entry will be added to the path; otherwise, skipped. The default is <b>true</b>. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">path</td>
<td style="text-align: center;">&lt;path&gt;</td>
<td> A string that will be treated as a path-like string. You can use <code>:</code> or <code>;</code> as path separators and NAnt will convert it to the platform's local conventions, while resolving references to environment variables. </td>
<td style="text-align: center;">False</td>
</tr>
<tr>
<td valign="top">unless</td>
<td style="text-align: center;">bool</td>
<td> Opposite of <code>if</code>. If <b>false</b> then the entry will be added to the path; otherwise, skipped. The default is <b>false</b>. </td>
<td style="text-align: center;">False</td>
</tr>
</table>
</div>
<h3>Requirements</h3>
<div style="margin-left: 20px;">
<b>Assembly:</b> NAnt.Core (0.91.3881.0)
</div>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More