diff --git a/NAnt.build b/NAnt.build
index 5f02491..0a5ae92 100644
--- a/NAnt.build
+++ b/NAnt.build
@@ -7,7 +7,7 @@
     <!-- global project settings -->
     <property name="project.name" value="nant" />
     <property name="project.version" value="0.92" unless="${property::exists('project.version')}" />
-    <property name="project.release.type" value="rc1" unless="${property::exists('project.release.type')}" /> <!-- nightly | dev | alpha | beta# | rc# | release -->
+    <property name="project.release.type" value="release" unless="${property::exists('project.release.type')}" /> <!-- nightly | dev | alpha | beta# | rc# | release -->
 
     <if test="${project.release.type == 'nightly'}">
         <property name="project.version.full" value="${project.version + '-nightly-' + build.date}" />
diff --git a/debian/changelog b/debian/changelog
index 3a028ea..e5d2d92 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+nant (0.92-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Tue, 15 Mar 2022 00:10:44 -0000
+
 nant (0.92~rc1+dfsg-7) unstable; urgency=medium
 
   * [48d668e] Fix build on newer Mono w/ -api facades. Thanks to Sean Champ.
diff --git a/debian/patches/000-fix_build_system.patch b/debian/patches/000-fix_build_system.patch
index dc215d1..af7eeff 100644
--- a/debian/patches/000-fix_build_system.patch
+++ b/debian/patches/000-fix_build_system.patch
@@ -8,10 +8,10 @@ Subject: 000-fix_build_system
  NAnt.build |   18 ++++++++++--------
  2 files changed, 18 insertions(+), 16 deletions(-)
 
-diff --git a/Makefile b/Makefile
-index 7e1dc47..fad13a2 100644
---- a/Makefile
-+++ b/Makefile
+Index: nant/Makefile
+===================================================================
+--- nant.orig/Makefile
++++ nant/Makefile
 @@ -1,8 +1,8 @@
  # NAnt make makefile for *nix
 -MONO=mono
@@ -43,10 +43,10 @@ index 7e1dc47..fad13a2 100644
  
  # Validates TARGET var. If the value of TARGET exists
  # in VALID_TARGETS array, SELECTED_TARGET will contain
-diff --git a/NAnt.build b/NAnt.build
-index 5f02491..bccb09a 100644
---- a/NAnt.build
-+++ b/NAnt.build
+Index: nant/NAnt.build
+===================================================================
+--- nant.orig/NAnt.build
++++ nant/NAnt.build
 @@ -815,12 +815,13 @@
      </target>
  
@@ -96,4 +96,3 @@ index 5f02491..bccb09a 100644
          <exec program="chmod" commandline="a+x ${path::combine(install.bindir, 'nant')}" />
      </target>
  </project>
--- 
diff --git a/debian/patches/001-nant-task-cs-InitializeElement.patch b/debian/patches/001-nant-task-cs-InitializeElement.patch
index 741d85c..956cac0 100644
--- a/debian/patches/001-nant-task-cs-InitializeElement.patch
+++ b/debian/patches/001-nant-task-cs-InitializeElement.patch
@@ -7,10 +7,10 @@ Subject: 001-nant-task-cs-InitializeElement
  src/NAnt.Core/Task.cs |    3 +--
  1 file changed, 1 insertion(+), 2 deletions(-)
 
-diff --git a/src/NAnt.Core/Task.cs b/src/NAnt.Core/Task.cs
-index 782d8d5..8121199 100644
---- a/src/NAnt.Core/Task.cs
-+++ b/src/NAnt.Core/Task.cs
+Index: nant/src/NAnt.Core/Task.cs
+===================================================================
+--- nant.orig/src/NAnt.Core/Task.cs
++++ nant/src/NAnt.Core/Task.cs
 @@ -426,7 +426,6 @@ namespace NAnt.Core {
          }
  
@@ -26,4 +26,3 @@ index 782d8d5..8121199 100644
 -}
 \ No newline at end of file
 +}
--- 
diff --git a/debian/patches/002-nant-load-partial-name.patch b/debian/patches/002-nant-load-partial-name.patch
index 246186f..55df274 100644
--- a/debian/patches/002-nant-load-partial-name.patch
+++ b/debian/patches/002-nant-load-partial-name.patch
@@ -7,10 +7,10 @@ Subject: 002-nant-load-partial-name
  src/NAnt.DotNet/Tasks/ScriptTask.cs |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
-diff --git a/src/NAnt.DotNet/Tasks/ScriptTask.cs b/src/NAnt.DotNet/Tasks/ScriptTask.cs
-index 287e9de..81e635c 100644
---- a/src/NAnt.DotNet/Tasks/ScriptTask.cs
-+++ b/src/NAnt.DotNet/Tasks/ScriptTask.cs
+Index: nant/src/NAnt.DotNet/Tasks/ScriptTask.cs
+===================================================================
+--- nant.orig/src/NAnt.DotNet/Tasks/ScriptTask.cs
++++ nant/src/NAnt.DotNet/Tasks/ScriptTask.cs
 @@ -517,7 +517,7 @@ namespace NAnt.DotNet.Tasks {
          #region Private Static Methods
  
@@ -20,4 +20,3 @@ index 287e9de..81e635c 100644
              if (providerAssembly == null) {
                  throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
                      ResourceUtils.GetString("NA2037"), assemblyName));
--- 
diff --git a/debian/patches/003-nant-use-system-dlls.patch b/debian/patches/003-nant-use-system-dlls.patch
index 8e0a1b8..75e6378 100644
--- a/debian/patches/003-nant-use-system-dlls.patch
+++ b/debian/patches/003-nant-use-system-dlls.patch
@@ -23,10 +23,10 @@ Subject: 003-nant-use-system-dlls
  tests/NAnt.Win32/NAnt.Win32.build                 |    4 ++-
  17 files changed, 51 insertions(+), 50 deletions(-)
 
-diff --git a/Makefile b/Makefile
-index fad13a2..cd7414b 100644
---- a/Makefile
-+++ b/Makefile
+Index: nant/Makefile
+===================================================================
+--- nant.orig/Makefile
++++ nant/Makefile
 @@ -1,4 +1,4 @@
 -# NAnt make makefile for *nix
 +#NAnt make makefile for *nix
@@ -42,7 +42,7 @@ index fad13a2..cd7414b 100644
  		-r:System.Configuration.dll -recurse:src${DIRSEP}NAnt.Console${DIRSEP}*.cs src${DIRSEP}CommonAssemblyInfo.cs
  
  
-@@ -94,16 +94,14 @@ bootstrap: setup bootstrap/NAnt.exe bootstrap/NAnt.Core.dll bootstrap/NAnt.DotNe
+@@ -94,16 +94,14 @@ bootstrap: setup bootstrap/NAnt.exe boot
  
  setup:
  	mkdir -p bootstrap
@@ -69,10 +69,10 @@ index fad13a2..cd7414b 100644
  		-recurse:src${DIRSEP}NAnt.Compression${DIRSEP}*.cs src${DIRSEP}CommonAssemblyInfo.cs
  
  bootstrap/NAnt.Win32Tasks.dll:
-diff --git a/NAnt.build b/NAnt.build
-index bccb09a..1d4c66d 100644
---- a/NAnt.build
-+++ b/NAnt.build
+Index: nant/NAnt.build
+===================================================================
+--- nant.orig/NAnt.build
++++ nant/NAnt.build
 @@ -41,7 +41,6 @@
          <include name="NAnt.DotNet/NAnt.DotNet.build" />
          <include name="NAnt.Compression/NAnt.Compression.build" />
@@ -89,10 +89,10 @@ index bccb09a..1d4c66d 100644
          <include name="NAnt.MSNet/NAnt.MSNet.build" />
          <include name="NAnt.Win32/NAnt.Win32.build" />
          <include name="NAnt.VisualCpp/NAnt.VisualCpp.build" />
-diff --git a/src/NAnt.Compression/NAnt.Compression.build b/src/NAnt.Compression/NAnt.Compression.build
-index 9fe2c41..98c7c1b 100644
---- a/src/NAnt.Compression/NAnt.Compression.build
-+++ b/src/NAnt.Compression/NAnt.Compression.build
+Index: nant/src/NAnt.Compression/NAnt.Compression.build
+===================================================================
+--- nant.orig/src/NAnt.Compression/NAnt.Compression.build
++++ nant/src/NAnt.Compression/NAnt.Compression.build
 @@ -17,7 +17,7 @@
              </sources>
              <references basedir="${build.dir}/bin">
@@ -102,10 +102,10 @@ index 9fe2c41..98c7c1b 100644
              </references>
              <resources>
                  <include name="*.resx"/>
-diff --git a/src/NAnt.Console/NAnt.Console.build b/src/NAnt.Console/NAnt.Console.build
-index bd11352..57af676 100644
---- a/src/NAnt.Console/NAnt.Console.build
-+++ b/src/NAnt.Console/NAnt.Console.build
+Index: nant/src/NAnt.Console/NAnt.Console.build
+===================================================================
+--- nant.orig/src/NAnt.Console/NAnt.Console.build
++++ nant/src/NAnt.Console/NAnt.Console.build
 @@ -32,10 +32,12 @@
                  <include name="../CommonAssemblyInfo.cs" />
              </sources>
@@ -120,10 +120,10 @@ index bd11352..57af676 100644
              <resources>
                  <include name="*.resx"/>
              </resources>
-diff --git a/src/NAnt.Core/NAnt.Core.build b/src/NAnt.Core/NAnt.Core.build
-index f6153c4..2d7192e 100644
---- a/src/NAnt.Core/NAnt.Core.build
-+++ b/src/NAnt.Core/NAnt.Core.build
+Index: nant/src/NAnt.Core/NAnt.Core.build
+===================================================================
+--- nant.orig/src/NAnt.Core/NAnt.Core.build
++++ nant/src/NAnt.Core/NAnt.Core.build
 @@ -27,9 +27,11 @@
                  <include name="Resources/**/*" />
              </resources>
@@ -137,10 +137,10 @@ index f6153c4..2d7192e 100644
          </csc>
      </target>
  </project>
-diff --git a/src/NAnt.DotNet/NAnt.DotNet.build b/src/NAnt.DotNet/NAnt.DotNet.build
-index 7c6bea9..12cf326 100644
---- a/src/NAnt.DotNet/NAnt.DotNet.build
-+++ b/src/NAnt.DotNet/NAnt.DotNet.build
+Index: nant/src/NAnt.DotNet/NAnt.DotNet.build
+===================================================================
+--- nant.orig/src/NAnt.DotNet/NAnt.DotNet.build
++++ nant/src/NAnt.DotNet/NAnt.DotNet.build
 @@ -22,8 +22,8 @@
              </sources>
              <references>
@@ -152,10 +152,10 @@ index 7c6bea9..12cf326 100644
              </references>
              <resources prefix="NAnt.DotNet" dynamicprefix="true">
                  <include name="Resources/**/*" />
-diff --git a/src/NAnt.NUnit/NAnt.NUnit.build b/src/NAnt.NUnit/NAnt.NUnit.build
-index f4aba89..b37a560 100644
---- a/src/NAnt.NUnit/NAnt.NUnit.build
-+++ b/src/NAnt.NUnit/NAnt.NUnit.build
+Index: nant/src/NAnt.NUnit/NAnt.NUnit.build
+===================================================================
+--- nant.orig/src/NAnt.NUnit/NAnt.NUnit.build
++++ nant/src/NAnt.NUnit/NAnt.NUnit.build
 @@ -18,27 +18,9 @@
              <references>
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
@@ -202,10 +202,10 @@ index f4aba89..b37a560 100644
          </csc>
      </target>
  </project>
-diff --git a/src/NAnt.SourceControl/NAnt.SourceControl.build b/src/NAnt.SourceControl/NAnt.SourceControl.build
-index 4f897e0..c868a54 100644
---- a/src/NAnt.SourceControl/NAnt.SourceControl.build
-+++ b/src/NAnt.SourceControl/NAnt.SourceControl.build
+Index: nant/src/NAnt.SourceControl/NAnt.SourceControl.build
+===================================================================
+--- nant.orig/src/NAnt.SourceControl/NAnt.SourceControl.build
++++ nant/src/NAnt.SourceControl/NAnt.SourceControl.build
 @@ -16,11 +16,13 @@
                  <include name="../CommonAssemblyInfo.cs" />
              </sources>
@@ -223,10 +223,10 @@ index 4f897e0..c868a54 100644
              <resources>
                  <include name="*.resx"/>
              </resources>
-diff --git a/tests/NAnt.Compression/NAnt.Compression.build b/tests/NAnt.Compression/NAnt.Compression.build
-index ec104e8..612c41a 100644
---- a/tests/NAnt.Compression/NAnt.Compression.build
-+++ b/tests/NAnt.Compression/NAnt.Compression.build
+Index: nant/tests/NAnt.Compression/NAnt.Compression.build
+===================================================================
+--- nant.orig/tests/NAnt.Compression/NAnt.Compression.build
++++ nant/tests/NAnt.Compression/NAnt.Compression.build
 @@ -21,8 +21,10 @@
              <references>
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
@@ -239,10 +239,10 @@ index ec104e8..612c41a 100644
          </csc>
      </target>
      <target name="test" depends="build">
-diff --git a/tests/NAnt.Console/NAnt.Console.build b/tests/NAnt.Console/NAnt.Console.build
-index 4e2e27b..78aa4a7 100644
---- a/tests/NAnt.Console/NAnt.Console.build
-+++ b/tests/NAnt.Console/NAnt.Console.build
+Index: nant/tests/NAnt.Console/NAnt.Console.build
+===================================================================
+--- nant.orig/tests/NAnt.Console/NAnt.Console.build
++++ nant/tests/NAnt.Console/NAnt.Console.build
 @@ -22,8 +22,10 @@
              <references>
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
@@ -255,10 +255,10 @@ index 4e2e27b..78aa4a7 100644
          </csc>
      </target>
      <target name="test" depends="build">
-diff --git a/tests/NAnt.Core/NAnt.Core.build b/tests/NAnt.Core/NAnt.Core.build
-index b93116c..bc032b4 100644
---- a/tests/NAnt.Core/NAnt.Core.build
-+++ b/tests/NAnt.Core/NAnt.Core.build
+Index: nant/tests/NAnt.Core/NAnt.Core.build
+===================================================================
+--- nant.orig/tests/NAnt.Core/NAnt.Core.build
++++ nant/tests/NAnt.Core/NAnt.Core.build
 @@ -22,9 +22,11 @@
              </sources>
              <references>
@@ -272,10 +272,10 @@ index b93116c..bc032b4 100644
              <resources failonempty="true" basedir="Resources" dynamicprefix="true" prefix="XML:">
                  <include name="**/*.xml"/>
                  <include name="**/*.build"/>
-diff --git a/tests/NAnt.DotNet/NAnt.DotNet.build b/tests/NAnt.DotNet/NAnt.DotNet.build
-index 5389240..e38931a 100644
---- a/tests/NAnt.DotNet/NAnt.DotNet.build
-+++ b/tests/NAnt.DotNet/NAnt.DotNet.build
+Index: nant/tests/NAnt.DotNet/NAnt.DotNet.build
+===================================================================
+--- nant.orig/tests/NAnt.DotNet/NAnt.DotNet.build
++++ nant/tests/NAnt.DotNet/NAnt.DotNet.build
 @@ -29,8 +29,10 @@
                  <include name="${build.dir}/bin/NAnt.Core.dll"/>
                  <include name="${build.dir}/bin/NAnt.Core.Tests.dll"/>
@@ -288,10 +288,10 @@ index 5389240..e38931a 100644
          </csc>
      </target>
      <target name="test" depends="build">
-diff --git a/tests/NAnt.MSNet/NAnt.MSNet.build b/tests/NAnt.MSNet/NAnt.MSNet.build
-index 9baf7ac..9a4c7ff 100644
---- a/tests/NAnt.MSNet/NAnt.MSNet.build
-+++ b/tests/NAnt.MSNet/NAnt.MSNet.build
+Index: nant/tests/NAnt.MSNet/NAnt.MSNet.build
+===================================================================
+--- nant.orig/tests/NAnt.MSNet/NAnt.MSNet.build
++++ nant/tests/NAnt.MSNet/NAnt.MSNet.build
 @@ -21,8 +21,10 @@
              <references>
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
@@ -304,10 +304,10 @@ index 9baf7ac..9a4c7ff 100644
          </csc>
      </target>
      <target name="test" depends="build" if="${framework::get-family(framework::get-target-framework()) == 'net'}">
-diff --git a/tests/NAnt.SourceControl/NAnt.SourceControl.build b/tests/NAnt.SourceControl/NAnt.SourceControl.build
-index cc8d2e9..be45766 100644
---- a/tests/NAnt.SourceControl/NAnt.SourceControl.build
-+++ b/tests/NAnt.SourceControl/NAnt.SourceControl.build
+Index: nant/tests/NAnt.SourceControl/NAnt.SourceControl.build
+===================================================================
+--- nant.orig/tests/NAnt.SourceControl/NAnt.SourceControl.build
++++ nant/tests/NAnt.SourceControl/NAnt.SourceControl.build
 @@ -21,8 +21,10 @@
              <references>
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
@@ -320,10 +320,10 @@ index cc8d2e9..be45766 100644
          </csc>
      </target>
      <target name="test" depends="build">
-diff --git a/tests/NAnt.VSNet/NAnt.VSNet.build b/tests/NAnt.VSNet/NAnt.VSNet.build
-index 7a84c7c..fa0f661 100644
---- a/tests/NAnt.VSNet/NAnt.VSNet.build
-+++ b/tests/NAnt.VSNet/NAnt.VSNet.build
+Index: nant/tests/NAnt.VSNet/NAnt.VSNet.build
+===================================================================
+--- nant.orig/tests/NAnt.VSNet/NAnt.VSNet.build
++++ nant/tests/NAnt.VSNet/NAnt.VSNet.build
 @@ -22,8 +22,10 @@
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
                  <include name="${build.dir}/bin/NAnt.Core.Tests.dll" />
@@ -336,10 +336,10 @@ index 7a84c7c..fa0f661 100644
          </csc>
      </target>
      <target name="test" depends="build" if="${platform::is-windows()}">
-diff --git a/tests/NAnt.VisualCpp/NAnt.VisualCpp.build b/tests/NAnt.VisualCpp/NAnt.VisualCpp.build
-index 8d78a8d..39c8d01 100644
---- a/tests/NAnt.VisualCpp/NAnt.VisualCpp.build
-+++ b/tests/NAnt.VisualCpp/NAnt.VisualCpp.build
+Index: nant/tests/NAnt.VisualCpp/NAnt.VisualCpp.build
+===================================================================
+--- nant.orig/tests/NAnt.VisualCpp/NAnt.VisualCpp.build
++++ nant/tests/NAnt.VisualCpp/NAnt.VisualCpp.build
 @@ -22,8 +22,10 @@
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
                  <include name="${build.dir}/bin/NAnt.Core.Tests.dll" />
@@ -352,10 +352,10 @@ index 8d78a8d..39c8d01 100644
          </csc>
      </target>
      <target name="test" depends="build" if="${platform::is-windows()}">
-diff --git a/tests/NAnt.Win32/NAnt.Win32.build b/tests/NAnt.Win32/NAnt.Win32.build
-index 48099a7..5d1b66b 100644
---- a/tests/NAnt.Win32/NAnt.Win32.build
-+++ b/tests/NAnt.Win32/NAnt.Win32.build
+Index: nant/tests/NAnt.Win32/NAnt.Win32.build
+===================================================================
+--- nant.orig/tests/NAnt.Win32/NAnt.Win32.build
++++ nant/tests/NAnt.Win32/NAnt.Win32.build
 @@ -21,8 +21,10 @@
              <references>
                  <include name="${build.dir}/bin/NAnt.Core.dll" />
@@ -368,4 +368,3 @@ index 48099a7..5d1b66b 100644
          </csc>
      </target>
      <target name="test" depends="build" if="${platform::is-windows()}">
--- 
diff --git a/debian/patches/006-nant-dont-build-ndoc-support.patch b/debian/patches/006-nant-dont-build-ndoc-support.patch
index 4117ff1..6b67bb6 100644
--- a/debian/patches/006-nant-dont-build-ndoc-support.patch
+++ b/debian/patches/006-nant-dont-build-ndoc-support.patch
@@ -12,10 +12,10 @@ build-dep on libndoc1.3-cil, which is built by nant
  4 files changed, 1 insertion(+), 479 deletions(-)
  delete mode 100644 src/NAnt.DotNet/Tasks/NDocTask.cs
 
-diff --git a/Makefile b/Makefile
-index cd7414b..b47587f 100644
---- a/Makefile
-+++ b/Makefile
+Index: nant/Makefile
+===================================================================
+--- nant.orig/Makefile
++++ nant/Makefile
 @@ -107,7 +107,7 @@ bootstrap/NAnt.Core.dll:
  bootstrap/NAnt.DotNetTasks.dll:
  	$(RESGEN)  src/NAnt.DotNet/Resources/Strings.resx bootstrap/NAnt.DotNet.Resources.Strings.resources
@@ -25,10 +25,10 @@ index cd7414b..b47587f 100644
  		-recurse:src${DIRSEP}NAnt.DotNet${DIRSEP}*.cs -resource:bootstrap/NAnt.DotNet.Resources.Strings.resources \
  		src${DIRSEP}CommonAssemblyInfo.cs
  
-diff --git a/NAnt.build b/NAnt.build
-index 1d4c66d..cf47759 100644
---- a/NAnt.build
-+++ b/NAnt.build
+Index: nant/NAnt.build
+===================================================================
+--- nant.orig/NAnt.build
++++ nant/NAnt.build
 @@ -161,8 +161,6 @@
          </nant>
          <!-- build NAnt.MSBuild assembly -->
@@ -54,10 +54,10 @@ index 1d4c66d..cf47759 100644
              </sourcefiles>
          </uptodate>
          <if test="${not(sdk.uptodate)}">
-diff --git a/src/NAnt.DotNet/NAnt.DotNet.build b/src/NAnt.DotNet/NAnt.DotNet.build
-index 12cf326..18cfc34 100644
---- a/src/NAnt.DotNet/NAnt.DotNet.build
-+++ b/src/NAnt.DotNet/NAnt.DotNet.build
+Index: nant/src/NAnt.DotNet/NAnt.DotNet.build
+===================================================================
+--- nant.orig/src/NAnt.DotNet/NAnt.DotNet.build
++++ nant/src/NAnt.DotNet/NAnt.DotNet.build
 @@ -22,8 +22,6 @@
              </sources>
              <references>
@@ -67,10 +67,9 @@ index 12cf326..18cfc34 100644
              </references>
              <resources prefix="NAnt.DotNet" dynamicprefix="true">
                  <include name="Resources/**/*" />
-diff --git a/src/NAnt.DotNet/Tasks/NDocTask.cs b/src/NAnt.DotNet/Tasks/NDocTask.cs
-deleted file mode 100644
-index 5f7ff58..0000000
---- a/src/NAnt.DotNet/Tasks/NDocTask.cs
+Index: nant/src/NAnt.DotNet/Tasks/NDocTask.cs
+===================================================================
+--- nant.orig/src/NAnt.DotNet/Tasks/NDocTask.cs
 +++ /dev/null
 @@ -1,472 +0,0 @@
 -// NAnt - A .NET build tool
@@ -545,4 +544,3 @@ index 5f7ff58..0000000
 -        #endregion Private Instance Methods
 -    }
 -}
--- 
diff --git a/debian/patches/9d7f1937978c17be116292352f124b1de83518e9..721a715ff411fdc385306676f1104eb0608c3dc3.diff b/debian/patches/9d7f1937978c17be116292352f124b1de83518e9..721a715ff411fdc385306676f1104eb0608c3dc3.diff
index eb35255..ec95fdf 100644
--- a/debian/patches/9d7f1937978c17be116292352f124b1de83518e9..721a715ff411fdc385306676f1104eb0608c3dc3.diff
+++ b/debian/patches/9d7f1937978c17be116292352f124b1de83518e9..721a715ff411fdc385306676f1104eb0608c3dc3.diff
@@ -1,6 +1,8 @@
---- a/Makefile
-+++ b/Makefile
-@@ -5,7 +5,7 @@
+Index: nant/Makefile
+===================================================================
+--- nant.orig/Makefile
++++ nant/Makefile
+@@ -5,7 +5,7 @@ RESGEN=resgen
  TARGET=mono-4.0
  
  # Contains a list of acceptable targets used to build NAnt
@@ -9,7 +11,7 @@
  
  ifndef DIRSEP
  ifeq ($(OS),Windows_NT)
-@@ -55,6 +55,11 @@
+@@ -55,6 +55,11 @@ ifeq ($(findstring 4.0,$(SELECTED_TARGET
  DEFINE := $(DEFINE),NET_1_0,NET_1_1,NET_2_0,NET_3_5,NET_4_0,ONLY_4_0
  endif
  
@@ -21,7 +23,7 @@
  # If TARGET var is invalid, throw an error
  else
  $(error Specified target "$(TARGET)" is not valid)
-@@ -69,7 +74,7 @@
+@@ -69,7 +74,7 @@ endif
  TARGET_FRAMEWORK = -t:$(TARGET)
  NANT = $(MONO) bootstrap/NAnt.exe $(NANT_DEBUG)
  
@@ -30,9 +32,11 @@
  all: bootstrap build-nant
  
  build-nant: 
---- a/Makefile.nmake
-+++ b/Makefile.nmake
-@@ -17,6 +17,8 @@
+Index: nant/Makefile.nmake
+===================================================================
+--- nant.orig/Makefile.nmake
++++ nant/Makefile.nmake
+@@ -17,6 +17,8 @@ DEFINE = $(DEFINE),NET_1_0,NET_1_1,NET_2
  DEFINE = $(DEFINE),NET_1_0,NET_1_1,NET_2_0,NET_3_5,ONLY_3_5
  !else if "$(TARGET)" == "net-4.0" || "$(TARGET)" == "mono-4.0"
  DEFINE = $(DEFINE),NET_1_0,NET_1_1,NET_2_0,NET_3_5,NET_4_0,ONLY_4_0
@@ -41,8 +45,10 @@
  !else
  !error Specified target "$(TARGET)" is not valid
  !endif
---- a/NAnt.build
-+++ b/NAnt.build
+Index: nant/NAnt.build
+===================================================================
+--- nant.orig/NAnt.build
++++ nant/NAnt.build
 @@ -755,6 +755,12 @@
          <property name="link.sdkdoc.version" value="SDK_v1_1" />
          <property name="link.sdkdoc.web" value="true" />
@@ -69,8 +75,10 @@
  
      <!-- install targets -->
  
---- a/src/NAnt.Console/App.config
-+++ b/src/NAnt.Console/App.config
+Index: nant/src/NAnt.Console/App.config
+===================================================================
+--- nant.orig/src/NAnt.Console/App.config
++++ nant/src/NAnt.Console/App.config
 @@ -886,6 +886,133 @@
                          </task>
                      </tasks>
@@ -205,9 +213,11 @@
                  <framework 
                      name="netcf-1.0"
                      family="netcf"
---- a/src/NAnt.Core/FrameworkInfo.cs
-+++ b/src/NAnt.Core/FrameworkInfo.cs
-@@ -315,6 +315,8 @@
+Index: nant/src/NAnt.Core/FrameworkInfo.cs
+===================================================================
+--- nant.orig/src/NAnt.Core/FrameworkInfo.cs
++++ nant/src/NAnt.Core/FrameworkInfo.cs
+@@ -315,6 +315,8 @@ namespace NAnt.Core {
                          return new Version(8, 0);
                      case "4.0":
                          return new Version(10, 0);
diff --git a/debian/patches/add_support_for_mono_4.0_profile.patch b/debian/patches/add_support_for_mono_4.0_profile.patch
index b1aa2d7..0394441 100644
--- a/debian/patches/add_support_for_mono_4.0_profile.patch
+++ b/debian/patches/add_support_for_mono_4.0_profile.patch
@@ -7,10 +7,10 @@ Subject: add_support_for_mono_4.0_profile
  src/NAnt.MSBuild/NAnt.MSBuild.build |   28 +++-------------------------
  1 file changed, 3 insertions(+), 25 deletions(-)
 
-diff --git a/src/NAnt.MSBuild/NAnt.MSBuild.build b/src/NAnt.MSBuild/NAnt.MSBuild.build
-index c2c4b7c..836da9f 100644
---- a/src/NAnt.MSBuild/NAnt.MSBuild.build
-+++ b/src/NAnt.MSBuild/NAnt.MSBuild.build
+Index: nant/src/NAnt.MSBuild/NAnt.MSBuild.build
+===================================================================
+--- nant.orig/src/NAnt.MSBuild/NAnt.MSBuild.build
++++ nant/src/NAnt.MSBuild/NAnt.MSBuild.build
 @@ -7,25 +7,12 @@
              * build.warnaserror     - (true|false) treat warnings as errors
              * current.build.defines - framework-specific build defines
@@ -55,4 +55,3 @@ index c2c4b7c..836da9f 100644
 -        <property name="nant.settings.currentframework" value="${original.targetframework}" />
      </target>
  </project>
--- 
diff --git a/debian/patches/downgrade_sharpziplib_api.patch b/debian/patches/downgrade_sharpziplib_api.patch
index f7e76a8..d9ffad1 100644
--- a/debian/patches/downgrade_sharpziplib_api.patch
+++ b/debian/patches/downgrade_sharpziplib_api.patch
@@ -7,10 +7,10 @@ Subject: downgrade_sharpziplib_api
  src/NAnt.Compression/Tasks/TarTask.cs |    6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)
 
-diff --git a/src/NAnt.Compression/Tasks/TarTask.cs b/src/NAnt.Compression/Tasks/TarTask.cs
-index 50f0b0d..da28a97 100644
---- a/src/NAnt.Compression/Tasks/TarTask.cs
-+++ b/src/NAnt.Compression/Tasks/TarTask.cs
+Index: nant/src/NAnt.Compression/Tasks/TarTask.cs
+===================================================================
+--- nant.orig/src/NAnt.Compression/Tasks/TarTask.cs
++++ nant/src/NAnt.Compression/Tasks/TarTask.cs
 @@ -160,7 +160,7 @@ namespace NAnt.Compression.Tasks {
  
                  // do not use convert line endings of text files to \n, as this
@@ -38,4 +38,3 @@ index 50f0b0d..da28a97 100644
                  }
  
                  // delete the (possibly corrupt) tar file
--- 
diff --git a/debian/patches/lowercase-docdir.patch b/debian/patches/lowercase-docdir.patch
index 0c4f072..ef16c68 100644
--- a/debian/patches/lowercase-docdir.patch
+++ b/debian/patches/lowercase-docdir.patch
@@ -6,10 +6,10 @@ Subject: lowercase docdir
  NAnt.build |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
-diff --git a/NAnt.build b/NAnt.build
-index cf47759..631a0b3 100644
---- a/NAnt.build
-+++ b/NAnt.build
+Index: nant/NAnt.build
+===================================================================
+--- nant.orig/NAnt.build
++++ nant/NAnt.build
 @@ -823,9 +823,9 @@
              <property name="install.destdir" value="${destdir}" />
          </if>
@@ -22,4 +22,3 @@ index cf47759..631a0b3 100644
          </if>
          
          <property name="install.bindir" value="${install.destdir + path::combine(install.prefix, 'bin')}" />
--- 
diff --git a/debian/patches/remove-netDumbster.patch b/debian/patches/remove-netDumbster.patch
index f100ed9..3e0240b 100644
--- a/debian/patches/remove-netDumbster.patch
+++ b/debian/patches/remove-netDumbster.patch
@@ -8,10 +8,10 @@ Subject: remove netDumbster
  2 files changed, 1723 deletions(-)
  delete mode 100644 tests/NAnt.Core/Tasks/MailTaskTest.cs
 
-diff --git a/tests/NAnt.Core/NAnt.Core.build b/tests/NAnt.Core/NAnt.Core.build
-index bc032b4..907f95b 100644
---- a/tests/NAnt.Core/NAnt.Core.build
-+++ b/tests/NAnt.Core/NAnt.Core.build
+Index: nant/tests/NAnt.Core/NAnt.Core.build
+===================================================================
+--- nant.orig/tests/NAnt.Core/NAnt.Core.build
++++ nant/tests/NAnt.Core/NAnt.Core.build
 @@ -22,7 +22,6 @@
              </sources>
              <references>
@@ -20,10 +20,9 @@ index bc032b4..907f95b 100644
              </references>
              <pkg-references>
                  <package name="nunit"/>
-diff --git a/tests/NAnt.Core/Tasks/MailTaskTest.cs b/tests/NAnt.Core/Tasks/MailTaskTest.cs
-deleted file mode 100644
-index 064eb24..0000000
---- a/tests/NAnt.Core/Tasks/MailTaskTest.cs
+Index: nant/tests/NAnt.Core/Tasks/MailTaskTest.cs
+===================================================================
+--- nant.orig/tests/NAnt.Core/Tasks/MailTaskTest.cs
 +++ /dev/null
 @@ -1,1722 +0,0 @@
 -// NAnt - A .NET build tool
@@ -1748,4 +1747,3 @@ index 064eb24..0000000
 -        #endregion Private Instance Methods
 -    }
 -}
--- 
diff --git a/debian/patches/set-target-to-4.5.patch b/debian/patches/set-target-to-4.5.patch
index 8a0e95d..049d42f 100644
--- a/debian/patches/set-target-to-4.5.patch
+++ b/debian/patches/set-target-to-4.5.patch
@@ -1,8 +1,10 @@
 Description: target 4.5 mono 
 Author: Dimitri John Ledkov <xnox@ubuntu.com>
 
---- nant-0.92~rc1+dfsg.orig/Makefile
-+++ nant-0.92~rc1+dfsg/Makefile
+Index: nant/Makefile
+===================================================================
+--- nant.orig/Makefile
++++ nant/Makefile
 @@ -2,7 +2,7 @@
  MONO=cli
  MCS=mono-csc
diff --git a/debian/patches/use_mono_mcs_common_compiler_infrastructure.patch b/debian/patches/use_mono_mcs_common_compiler_infrastructure.patch
index 53334fa..09635cf 100644
--- a/debian/patches/use_mono_mcs_common_compiler_infrastructure.patch
+++ b/debian/patches/use_mono_mcs_common_compiler_infrastructure.patch
@@ -1,7 +1,7 @@
-diff --git a/src/NAnt.Console/App.config b/src/NAnt.Console/App.config
-index a3dc8ec..571ba23 100644
---- a/src/NAnt.Console/App.config
-+++ b/src/NAnt.Console/App.config
+Index: nant/src/NAnt.Console/App.config
+===================================================================
+--- nant.orig/src/NAnt.Console/App.config
++++ nant/src/NAnt.Console/App.config
 @@ -1724,6 +1724,7 @@
                      </task-assemblies>
                      <tool-paths>
@@ -259,12 +259,10 @@ index a3dc8ec..571ba23 100644
                              <attribute name="managed">true</attribute>
                              <attribute name="supportspackagereferences">true</attribute>
                              <attribute name="supportsnowarnlist">true</attribute>
-diff --git a/src/NAnt.Core/ConsoleDriver.cs b/src/NAnt.Core/ConsoleDriver.cs
-old mode 100644
-new mode 100755
-index 454600c..2d1a6d9
---- a/src/NAnt.Core/ConsoleDriver.cs
-+++ b/src/NAnt.Core/ConsoleDriver.cs
+Index: nant/src/NAnt.Core/ConsoleDriver.cs
+===================================================================
+--- nant.orig/src/NAnt.Core/ConsoleDriver.cs
++++ nant/src/NAnt.Core/ConsoleDriver.cs
 @@ -318,8 +318,9 @@ namespace NAnt.Core {
              xsltDoc.Load(reader);
              xsltDoc.DocumentElement.SetAttribute("xmlns:nant",buildDoc.DocumentElement.NamespaceURI);
@@ -277,12 +275,10 @@ index 454600c..2d1a6d9
  
              StringBuilder sb = new StringBuilder();
              StringWriter writer = new StringWriter(sb, CultureInfo.InvariantCulture);
-diff --git a/src/NAnt.Core/Resources/ProjectHelp.xslt b/src/NAnt.Core/Resources/ProjectHelp.xslt
-old mode 100644
-new mode 100755
-index 04756d9..e180bcd
---- a/src/NAnt.Core/Resources/ProjectHelp.xslt
-+++ b/src/NAnt.Core/Resources/ProjectHelp.xslt
+Index: nant/src/NAnt.Core/Resources/ProjectHelp.xslt
+===================================================================
+--- nant.orig/src/NAnt.Core/Resources/ProjectHelp.xslt
++++ nant/src/NAnt.Core/Resources/ProjectHelp.xslt
 @@ -26,7 +26,7 @@
      <xslt:output method="text" />
      <msxsl:script language="C#" implements-prefix="stringutils">
@@ -292,10 +288,10 @@ index 04756d9..e180bcd
              return str.PadRight(padding);
          }
      ]]>
-diff --git a/src/NAnt.DotNet/Tasks/CscTask.cs b/src/NAnt.DotNet/Tasks/CscTask.cs
-index 31b1a0a..b0ad97b 100644
---- a/src/NAnt.DotNet/Tasks/CscTask.cs
-+++ b/src/NAnt.DotNet/Tasks/CscTask.cs
+Index: nant/src/NAnt.DotNet/Tasks/CscTask.cs
+===================================================================
+--- nant.orig/src/NAnt.DotNet/Tasks/CscTask.cs
++++ nant/src/NAnt.DotNet/Tasks/CscTask.cs
 @@ -90,6 +90,7 @@ namespace NAnt.DotNet.Tasks {
          private string _langVersion;
  
@@ -343,11 +339,11 @@ index 31b1a0a..b0ad97b 100644
              // XML documentation
              if (DocFile != null) {
                  if (SupportsDocGeneration) {
-diff --git a/src/NAnt.NUnit/NAnt.NUnit.build b/src/NAnt.NUnit/NAnt.NUnit.build
-index f4aba89..9695e24 100644
---- a/src/NAnt.NUnit/NAnt.NUnit.build
-+++ b/src/NAnt.NUnit/NAnt.NUnit.build
-@@ -42,6 +42,8 @@
+Index: nant/src/NAnt.NUnit/NAnt.NUnit.build
+===================================================================
+--- nant.orig/src/NAnt.NUnit/NAnt.NUnit.build
++++ nant/src/NAnt.NUnit/NAnt.NUnit.build
+@@ -24,6 +24,8 @@
          </csc>
          <csc target="library" define="${current.build.defines}" warnaserror="${build.warnaserror}" debug="${build.debug}" output="${build.dir}/bin/NAnt.NUnit2Tasks.dll" doc="${build.dir}/bin/NAnt.NUnit2Tasks.xml">
              <nowarn>
@@ -356,10 +352,10 @@ index f4aba89..9695e24 100644
                  <!-- do not report deprecation warnings -->
                  <warning number="0618" />
              </nowarn>
-diff --git a/src/NDoc.Documenter.NAnt/NDoc.Documenter.NAnt.build b/src/NDoc.Documenter.NAnt/NDoc.Documenter.NAnt.build
-index f7e3055..2de6374 100644
---- a/src/NDoc.Documenter.NAnt/NDoc.Documenter.NAnt.build
-+++ b/src/NDoc.Documenter.NAnt/NDoc.Documenter.NAnt.build
+Index: nant/src/NDoc.Documenter.NAnt/NDoc.Documenter.NAnt.build
+===================================================================
+--- nant.orig/src/NDoc.Documenter.NAnt/NDoc.Documenter.NAnt.build
++++ nant/src/NDoc.Documenter.NAnt/NDoc.Documenter.NAnt.build
 @@ -11,6 +11,7 @@
          <!-- build main assembly -->
          <csc target="library" define="${current.build.defines}" warnaserror="${build.warnaserror}" debug="${build.debug}" output="${build.dir}/bin/${project::get-name()}.dll" doc="${build.dir}/bin/${project::get-name()}.xml">
@@ -368,12 +364,10 @@ index f7e3055..2de6374 100644
                  <warning number="0618" />
                  <warning number="1591" />
                  <warning number="1572" />
-diff --git a/tests/NAnt.Core/Framework.config b/tests/NAnt.Core/Framework.config
-old mode 100644
-new mode 100755
-index 62e64ea..319940a
---- a/tests/NAnt.Core/Framework.config
-+++ b/tests/NAnt.Core/Framework.config
+Index: nant/tests/NAnt.Core/Framework.config
+===================================================================
+--- nant.orig/tests/NAnt.Core/Framework.config
++++ nant/tests/NAnt.Core/Framework.config
 @@ -467,28 +467,6 @@
                          key="SOFTWARE\Microsoft\.NETFramework\InstallRoot"
                          hive="LocalMachine" />
diff --git a/doc/help/elements/NAnt.Compression.Tasks.ExpandBaseTask.html b/doc/help/elements/NAnt.Compression.Tasks.ExpandBaseTask.html
index 5ece3c3..8072b76 100644
--- a/doc/help/elements/NAnt.Compression.Tasks.ExpandBaseTask.html
+++ b/doc/help/elements/NAnt.Compression.Tasks.ExpandBaseTask.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ExpandBaseTask</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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">
@@ -69,7 +68,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.DataTypeBase.html b/doc/help/elements/NAnt.Core.DataTypeBase.html
index c79ab23..9374977 100644
--- a/doc/help/elements/NAnt.Core.DataTypeBase.html
+++ b/doc/help/elements/NAnt.Core.DataTypeBase.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> DataTypeBase</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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">
@@ -51,7 +50,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.ElementContainer.html b/doc/help/elements/NAnt.Core.ElementContainer.html
index 33e4a5c..b7b6eff 100644
--- a/doc/help/elements/NAnt.Core.ElementContainer.html
+++ b/doc/help/elements/NAnt.Core.ElementContainer.html
@@ -20,15 +20,14 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ElementContainer</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>ElementContainer</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Executes embedded tasks/elements in the order in which they are defined. </p>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Filters.ChainableReader.html b/doc/help/elements/NAnt.Core.Filters.ChainableReader.html
index 2cb2b27..29badd6 100644
--- a/doc/help/elements/NAnt.Core.Filters.ChainableReader.html
+++ b/doc/help/elements/NAnt.Core.Filters.ChainableReader.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ChainableReader</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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.92.4526.0)
+    <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.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Filters.Filter.html b/doc/help/elements/NAnt.Core.Filters.Filter.html
index 2ee8113..a89a6df 100644
--- a/doc/help/elements/NAnt.Core.Filters.Filter.html
+++ b/doc/help/elements/NAnt.Core.Filters.Filter.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Filter</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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">
@@ -51,7 +50,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Target.html b/doc/help/elements/NAnt.Core.Target.html
index 5d8d66d..7b9a2bd 100644
--- a/doc/help/elements/NAnt.Core.Target.html
+++ b/doc/help/elements/NAnt.Core.Target.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Target</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Target</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Parameters</h3>
@@ -76,7 +75,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Task.html b/doc/help/elements/NAnt.Core.Task.html
index e5ea94b..fc2efcd 100644
--- a/doc/help/elements/NAnt.Core.Task.html
+++ b/doc/help/elements/NAnt.Core.Task.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Task</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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.92.4526.0)
+    <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.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.TaskContainer.html b/doc/help/elements/NAnt.Core.TaskContainer.html
index 3937900..6ca54db 100644
--- a/doc/help/elements/NAnt.Core.TaskContainer.html
+++ b/doc/help/elements/NAnt.Core.TaskContainer.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> TaskContainer</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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">
@@ -63,7 +62,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Tasks.ChooseTask.When.html b/doc/help/elements/NAnt.Core.Tasks.ChooseTask.When.html
index 0cdaea3..5ce5bac 100644
--- a/doc/help/elements/NAnt.Core.Tasks.ChooseTask.When.html
+++ b/doc/help/elements/NAnt.Core.Tasks.ChooseTask.When.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ChooseTask.When</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>ChooseTask.When</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Groups a set of tasks to execute when a condition is met. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -45,7 +44,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Tasks.ExternalProgramBase.html b/doc/help/elements/NAnt.Core.Tasks.ExternalProgramBase.html
index 6208941..8e025e4 100644
--- a/doc/help/elements/NAnt.Core.Tasks.ExternalProgramBase.html
+++ b/doc/help/elements/NAnt.Core.Tasks.ExternalProgramBase.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ExternalProgramBase</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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>
@@ -127,7 +126,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Tasks.InElement.html b/doc/help/elements/NAnt.Core.Tasks.InElement.html
index 69ad449..019c5dd 100644
--- a/doc/help/elements/NAnt.Core.Tasks.InElement.html
+++ b/doc/help/elements/NAnt.Core.Tasks.InElement.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> InElement</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>InElement</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Nested Elements:</h3>
@@ -44,7 +43,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Tasks.TryCatchTask.CatchElement.html b/doc/help/elements/NAnt.Core.Tasks.TryCatchTask.CatchElement.html
index 07a1775..3b1bb5a 100644
--- a/doc/help/elements/NAnt.Core.Tasks.TryCatchTask.CatchElement.html
+++ b/doc/help/elements/NAnt.Core.Tasks.TryCatchTask.CatchElement.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> TryCatchTask.CatchElement</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>TryCatchTask.CatchElement</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Parameters</h3>
@@ -46,7 +45,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.Argument.html b/doc/help/elements/NAnt.Core.Types.Argument.html
index 68018eb..d37655e 100644
--- a/doc/help/elements/NAnt.Core.Types.Argument.html
+++ b/doc/help/elements/NAnt.Core.Types.Argument.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;arg&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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>
@@ -116,7 +115,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.EnvironmentSet.html b/doc/help/elements/NAnt.Core.Types.EnvironmentSet.html
index 8ffa532..4b69d7e 100644
--- a/doc/help/elements/NAnt.Core.Types.EnvironmentSet.html
+++ b/doc/help/elements/NAnt.Core.Types.EnvironmentSet.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;environment&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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-->
@@ -60,7 +59,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.EnvironmentVariable.html b/doc/help/elements/NAnt.Core.Types.EnvironmentVariable.html
index 396a43d..1b77269 100644
--- a/doc/help/elements/NAnt.Core.Types.EnvironmentVariable.html
+++ b/doc/help/elements/NAnt.Core.Types.EnvironmentVariable.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;env&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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">
@@ -94,7 +93,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.FileSet.Exclude.html b/doc/help/elements/NAnt.Core.Types.FileSet.Exclude.html
index 9341d9d..9850a50 100644
--- a/doc/help/elements/NAnt.Core.Types.FileSet.Exclude.html
+++ b/doc/help/elements/NAnt.Core.Types.FileSet.Exclude.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> FileSet.Exclude</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>FileSet.Exclude</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Parameters</h3>
@@ -58,7 +57,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.FileSet.ExcludesFile.html b/doc/help/elements/NAnt.Core.Types.FileSet.ExcludesFile.html
index a15ddba..7af572c 100644
--- a/doc/help/elements/NAnt.Core.Types.FileSet.ExcludesFile.html
+++ b/doc/help/elements/NAnt.Core.Types.FileSet.ExcludesFile.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> FileSet.ExcludesFile</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>FileSet.ExcludesFile</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Parameters</h3>
@@ -58,7 +57,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.FileSet.Include.html b/doc/help/elements/NAnt.Core.Types.FileSet.Include.html
index 528ea3f..e03d7de 100644
--- a/doc/help/elements/NAnt.Core.Types.FileSet.Include.html
+++ b/doc/help/elements/NAnt.Core.Types.FileSet.Include.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> FileSet.Include</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>FileSet.Include</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Parameters</h3>
@@ -70,7 +69,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.FileSet.IncludesFile.html b/doc/help/elements/NAnt.Core.Types.FileSet.IncludesFile.html
index eb715df..b898d77 100644
--- a/doc/help/elements/NAnt.Core.Types.FileSet.IncludesFile.html
+++ b/doc/help/elements/NAnt.Core.Types.FileSet.IncludesFile.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> FileSet.IncludesFile</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>FileSet.IncludesFile</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Parameters</h3>
@@ -70,7 +69,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.Formatter.html b/doc/help/elements/NAnt.Core.Types.Formatter.html
index 6455bd0..38dfeb8 100644
--- a/doc/help/elements/NAnt.Core.Types.Formatter.html
+++ b/doc/help/elements/NAnt.Core.Types.Formatter.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;formatter&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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>
@@ -64,7 +63,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.Option.html b/doc/help/elements/NAnt.Core.Types.Option.html
index 891fe00..69c3d9c 100644
--- a/doc/help/elements/NAnt.Core.Types.Option.html
+++ b/doc/help/elements/NAnt.Core.Types.Option.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;option&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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">
@@ -63,7 +62,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.PathElement.html b/doc/help/elements/NAnt.Core.Types.PathElement.html
index cd43798..d9cfd3f 100644
--- a/doc/help/elements/NAnt.Core.Types.PathElement.html
+++ b/doc/help/elements/NAnt.Core.Types.PathElement.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;pathelement&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</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">
@@ -69,7 +68,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.Pattern.html b/doc/help/elements/NAnt.Core.Types.Pattern.html
index 871dad2..b12c87e 100644
--- a/doc/help/elements/NAnt.Core.Types.Pattern.html
+++ b/doc/help/elements/NAnt.Core.Types.Pattern.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Pattern</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Pattern</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Parameters</h3>
@@ -58,7 +57,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.RawXml.html b/doc/help/elements/NAnt.Core.Types.RawXml.html
index f5e0c93..4f01c64 100644
--- a/doc/help/elements/NAnt.Core.Types.RawXml.html
+++ b/doc/help/elements/NAnt.Core.Types.RawXml.html
@@ -20,15 +20,14 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> RawXml</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>RawXml</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents an element of which the XML is processed by its parent task or type. </p>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.Token.html b/doc/help/elements/NAnt.Core.Types.Token.html
index 5625a46..5ed032e 100644
--- a/doc/help/elements/NAnt.Core.Types.Token.html
+++ b/doc/help/elements/NAnt.Core.Types.Token.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;token&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;token&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> ReplaceTokens filter token. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -63,7 +62,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.XmlNamespace.html b/doc/help/elements/NAnt.Core.Types.XmlNamespace.html
index 7a20b8c..f3a1015 100644
--- a/doc/help/elements/NAnt.Core.Types.XmlNamespace.html
+++ b/doc/help/elements/NAnt.Core.Types.XmlNamespace.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;namespace&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;namespace&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents an XML namespace. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -63,7 +62,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.XsltExtensionObject.html b/doc/help/elements/NAnt.Core.Types.XsltExtensionObject.html
index 5188417..8d8c430 100644
--- a/doc/help/elements/NAnt.Core.Types.XsltExtensionObject.html
+++ b/doc/help/elements/NAnt.Core.Types.XsltExtensionObject.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;xsltextensionobject&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;xsltextensionobject&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents an XSLT extension object. The object should have a default parameterless constructor and the return value should be one of the four basic XPath data types of number, string, Boolean or node set. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -69,7 +68,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.Core.Types.XsltParameter.html b/doc/help/elements/NAnt.Core.Types.XsltParameter.html
index 670914f..aa2d6dd 100644
--- a/doc/help/elements/NAnt.Core.Types.XsltParameter.html
+++ b/doc/help/elements/NAnt.Core.Types.XsltParameter.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;xsltparameter&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;xsltparameter&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents an XSLT parameter. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -69,7 +68,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Tasks.CompilerBase.html b/doc/help/elements/NAnt.DotNet.Tasks.CompilerBase.html
index d939761..78d20ad 100644
--- a/doc/help/elements/NAnt.DotNet.Tasks.CompilerBase.html
+++ b/doc/help/elements/NAnt.DotNet.Tasks.CompilerBase.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> CompilerBase</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>CompilerBase</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Provides the abstract base class for compiler tasks. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -332,7 +331,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.AssemblyAttribute.html b/doc/help/elements/NAnt.DotNet.Types.AssemblyAttribute.html
index ac7685d..2d0201e 100644
--- a/doc/help/elements/NAnt.DotNet.Types.AssemblyAttribute.html
+++ b/doc/help/elements/NAnt.DotNet.Types.AssemblyAttribute.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;attribute&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;attribute&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents an assembly-level attribute. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -69,7 +68,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.CompilerWarning.html b/doc/help/elements/NAnt.DotNet.Types.CompilerWarning.html
index 508ef39..299113b 100644
--- a/doc/help/elements/NAnt.DotNet.Types.CompilerWarning.html
+++ b/doc/help/elements/NAnt.DotNet.Types.CompilerWarning.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> CompilerWarning</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>CompilerWarning</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a compiler warning. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -57,7 +56,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.DataTypeCollectionBase.html b/doc/help/elements/NAnt.DotNet.Types.DataTypeCollectionBase.html
index 1ec8070..e845fb8 100644
--- a/doc/help/elements/NAnt.DotNet.Types.DataTypeCollectionBase.html
+++ b/doc/help/elements/NAnt.DotNet.Types.DataTypeCollectionBase.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> DataTypeCollectionBase</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>DataTypeCollectionBase</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Base class for collections that needs to be globally referencable. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -51,7 +50,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.EmbeddedResourceCollection.html b/doc/help/elements/NAnt.DotNet.Types.EmbeddedResourceCollection.html
index 8086523..2fddbb4 100644
--- a/doc/help/elements/NAnt.DotNet.Types.EmbeddedResourceCollection.html
+++ b/doc/help/elements/NAnt.DotNet.Types.EmbeddedResourceCollection.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> EmbeddedResourceCollection</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>EmbeddedResourceCollection</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
-    <p> Contains a collection of <a href="../../sdk/NAnt.DotNet.Types.EmbeddedResource.html">EmbeddedResource</a> items. </p> Do not yet expose this to build authors. <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.DotNetTasks (0.92.4526.0)
+    <p> Contains a collection of <a href="../../sdk/NAnt.DotNet.Types.EmbeddedResource.html">EmbeddedResource</a> items. </p> Do not yet expose this to build authors. <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.DotNetTasks (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.LibDirectorySet.html b/doc/help/elements/NAnt.DotNet.Types.LibDirectorySet.html
index f214e1b..9a857b4 100644
--- a/doc/help/elements/NAnt.DotNet.Types.LibDirectorySet.html
+++ b/doc/help/elements/NAnt.DotNet.Types.LibDirectorySet.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> LibDirectorySet</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>LibDirectorySet</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A specialized <a href="../types/fileset.html">&lt;fileset&gt;</a> used for setting the lib directories. </p> The primary reason for this class is to allow the <code>BaseDirectory</code> to always be the same value as the parent <a href="../types/assemblyfileset.html">&lt;assemblyfileset&gt;</a><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">casesensitive</td><td style="text-align: center;">bool</td><td> Indicates whether include and exclude patterns must be treated in a case-sensitive way. The default is <b>true</b> on Unix; otherwise, <b>false</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">defaultexcludes</td><td style="text-align: center;">bool</td><td> Indicates whether default excludes should be used or not. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">failonempty</td><td style="text-align: center;">bool</td><td> When set to <b>true</b>, causes the fileset element to throw a <a href="../../sdk/NAnt.Core.ValidationException.html">ValidationException</a> when no files match the includes and excludes criteria. The default is <b>false</b>. </td><td style="text-align: center;">False</td></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>Nested Elements:</h3><!--Array--><!--NestedElementArray=T:NAnt.Core.Types.FileSet.Include--><h4><a id="includes"></a>
                     &lt;includes&gt;
                 </h4><div class="nested-element"><i>Deprecated.</i>  The items to include in the fileset. <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></div><h4><a id="includes"></a>
@@ -57,6 +56,6 @@
                     &lt;<a href="../types/patternset.html">patternset</a>&gt;
                 </h4><div class="nested-element"> Adds a nested set of patterns, or references a standalone patternset. <p /></div><h4><a id="patternset"></a>
                     &lt;/<a href="../types/patternset.html">patternset</a>&gt;
-                </h4><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+                </h4><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div><h3>See Also</h3><a href="../types/fileset.html">&lt;fileset&gt;</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.Module.html b/doc/help/elements/NAnt.DotNet.Types.Module.html
index c9fa7d8..ca8cda3 100644
--- a/doc/help/elements/NAnt.DotNet.Types.Module.html
+++ b/doc/help/elements/NAnt.DotNet.Types.Module.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Module</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Module</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a metadata file without assembly manifest. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -51,7 +50,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.NamespaceImport.html b/doc/help/elements/NAnt.DotNet.Types.NamespaceImport.html
index 2590d57..302a5fd 100644
--- a/doc/help/elements/NAnt.DotNet.Types.NamespaceImport.html
+++ b/doc/help/elements/NAnt.DotNet.Types.NamespaceImport.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;import&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;import&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a namespace to import. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -64,7 +63,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.DotNet.Types.Package.html b/doc/help/elements/NAnt.DotNet.Types.Package.html
index a8518de..e21ea6a 100644
--- a/doc/help/elements/NAnt.DotNet.Types.Package.html
+++ b/doc/help/elements/NAnt.DotNet.Types.Package.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Package</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Package</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a package. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -57,7 +56,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.NUnit.Types.FormatterElement.html b/doc/help/elements/NAnt.NUnit.Types.FormatterElement.html
index f46fdbd..1364d52 100644
--- a/doc/help/elements/NAnt.NUnit.Types.FormatterElement.html
+++ b/doc/help/elements/NAnt.NUnit.Types.FormatterElement.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;formatter&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;formatter&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents the FormatterElement of the NUnit task. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -65,7 +64,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.NUnit1.Types.NUnitTest.html b/doc/help/elements/NAnt.NUnit1.Types.NUnitTest.html
index ecc6676..c76682b 100644
--- a/doc/help/elements/NAnt.NUnit1.Types.NUnitTest.html
+++ b/doc/help/elements/NAnt.NUnit1.Types.NUnitTest.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;test&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;test&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a test element of an <a href="../tasks/nunit.html">&lt;nunit&gt;</a> task. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -87,7 +86,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit1Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit1Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.NUnit2.Types.Category.html b/doc/help/elements/NAnt.NUnit2.Types.Category.html
index 1f79abe..96afebc 100644
--- a/doc/help/elements/NAnt.NUnit2.Types.Category.html
+++ b/doc/help/elements/NAnt.NUnit2.Types.Category.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Category</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Category</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a certain group of test cases or fixtures. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -57,7 +56,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.NUnit2.Types.NUnit2Test.html b/doc/help/elements/NAnt.NUnit2.Types.NUnit2Test.html
index 925a748..41dea87 100644
--- a/doc/help/elements/NAnt.NUnit2.Types.NUnit2Test.html
+++ b/doc/help/elements/NAnt.NUnit2.Types.NUnit2Test.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;test&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;test&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a <code>test</code> element of an <a href="../tasks/nunit2.html">&lt;nunit2&gt;</a> task. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -106,7 +105,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.SourceControl.Tasks.AbstractCvsTask.html b/doc/help/elements/NAnt.SourceControl.Tasks.AbstractCvsTask.html
index 55700c5..05105f8 100644
--- a/doc/help/elements/NAnt.SourceControl.Tasks.AbstractCvsTask.html
+++ b/doc/help/elements/NAnt.SourceControl.Tasks.AbstractCvsTask.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> AbstractCvsTask</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>AbstractCvsTask</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A base class for creating tasks for executing CVS client commands on a CVS repository. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -234,7 +233,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.SourceControl.Tasks.AbstractSourceControlTask.html b/doc/help/elements/NAnt.SourceControl.Tasks.AbstractSourceControlTask.html
index 91d8a1b..37e4d7c 100644
--- a/doc/help/elements/NAnt.SourceControl.Tasks.AbstractSourceControlTask.html
+++ b/doc/help/elements/NAnt.SourceControl.Tasks.AbstractSourceControlTask.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> AbstractSourceControlTask</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>AbstractSourceControlTask</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A base class for creating tasks for executing CVS client commands on a CVS repository. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -162,7 +161,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.VSNet.Types.WebMap.html b/doc/help/elements/NAnt.VSNet.Types.WebMap.html
index 3534800..4933e9d 100644
--- a/doc/help/elements/NAnt.VSNet.Types.WebMap.html
+++ b/doc/help/elements/NAnt.VSNet.Types.WebMap.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> WebMap</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>WebMap</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a single mapping from URL project path to physical project path. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -69,7 +68,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VSNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VSNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.VisualCpp.Types.Library.html b/doc/help/elements/NAnt.VisualCpp.Types.Library.html
index 75a5907..82f4acd 100644
--- a/doc/help/elements/NAnt.VisualCpp.Types.Library.html
+++ b/doc/help/elements/NAnt.VisualCpp.Types.Library.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Library</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Library</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a library. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -57,7 +56,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/elements/NAnt.VisualCpp.Types.Symbol.html b/doc/help/elements/NAnt.VisualCpp.Types.Symbol.html
index 45a2bc2..69f83ea 100644
--- a/doc/help/elements/NAnt.VisualCpp.Types.Symbol.html
+++ b/doc/help/elements/NAnt.VisualCpp.Types.Symbol.html
@@ -20,11 +20,10 @@
           <span>Element Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Symbol</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Symbol</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represents a symbol. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -57,7 +56,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Compression.Types.DuplicateHandling.html b/doc/help/enums/NAnt.Compression.Types.DuplicateHandling.html
index f27bbfd..79187e1 100644
--- a/doc/help/enums/NAnt.Compression.Types.DuplicateHandling.html
+++ b/doc/help/enums/NAnt.Compression.Types.DuplicateHandling.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> DuplicateHandling</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>DuplicateHandling</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Specifies how entries with the same name should be processed. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -49,7 +48,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Compression.Types.TarCompressionMethod.html b/doc/help/enums/NAnt.Compression.Types.TarCompressionMethod.html
index 256c65d..f7fa823 100644
--- a/doc/help/enums/NAnt.Compression.Types.TarCompressionMethod.html
+++ b/doc/help/enums/NAnt.Compression.Types.TarCompressionMethod.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> TarCompressionMethod</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>TarCompressionMethod</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Specifies the compression methods supported by <a href="../tasks/tar.html">&lt;tar&gt;</a> task and <a href="../tasks/untar.html">&lt;untar&gt;</a> task. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -49,7 +48,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Core.FrameworkTypes.html b/doc/help/enums/NAnt.Core.FrameworkTypes.html
index bd669bf..e14f794 100644
--- a/doc/help/enums/NAnt.Core.FrameworkTypes.html
+++ b/doc/help/enums/NAnt.Core.FrameworkTypes.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> FrameworkTypes</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>FrameworkTypes</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the types of frameworks. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -69,7 +68,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Core.Level.html b/doc/help/enums/NAnt.Core.Level.html
index 7504aa7..8558792 100644
--- a/doc/help/enums/NAnt.Core.Level.html
+++ b/doc/help/enums/NAnt.Core.Level.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> Level</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>Level</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the set of levels recognised by the NAnt logging system. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -61,7 +60,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Core.Tasks.AvailableTask.ResourceType.html b/doc/help/enums/NAnt.Core.Tasks.AvailableTask.ResourceType.html
index 64862c2..954d5ca 100644
--- a/doc/help/enums/NAnt.Core.Tasks.AvailableTask.ResourceType.html
+++ b/doc/help/enums/NAnt.Core.Tasks.AvailableTask.ResourceType.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> AvailableTask.ResourceType</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>AvailableTask.ResourceType</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the possible resource checks. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -53,7 +52,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopItem.html b/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopItem.html
index 059fe77..56ec683 100644
--- a/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopItem.html
+++ b/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopItem.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> LoopTask.LoopItem</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>LoopTask.LoopItem</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Fields</h3>
@@ -58,7 +57,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopTrim.html b/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopTrim.html
index 472155b..c54194e 100644
--- a/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopTrim.html
+++ b/doc/help/enums/NAnt.Core.Tasks.LoopTask.LoopTrim.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> LoopTask.LoopTrim</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>LoopTask.LoopTrim</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
     </p>
     <h3>Fields</h3>
@@ -54,7 +53,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Core.Tasks.MailTask.MailFormat.html b/doc/help/enums/NAnt.Core.Tasks.MailTask.MailFormat.html
index d82a03e..4704859 100644
--- a/doc/help/enums/NAnt.Core.Tasks.MailTask.MailFormat.html
+++ b/doc/help/enums/NAnt.Core.Tasks.MailTask.MailFormat.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> MailTask.MailFormat</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>MailTask.MailFormat</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Temporary enum replacement of <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebMailMailFormatClassTopic.asp">MailFormat</a> to ease transition to newer property flags. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -45,7 +44,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.Core.Types.ManagedExecution.html b/doc/help/enums/NAnt.Core.Types.ManagedExecution.html
index 5867a86..b0b8cb2 100644
--- a/doc/help/enums/NAnt.Core.Types.ManagedExecution.html
+++ b/doc/help/enums/NAnt.Core.Types.ManagedExecution.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ManagedExecution</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>ManagedExecution</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Specifies the execution mode for managed applications. </p>
     <p> For backward compatibility, the following string values can also be used in build files: </p>
     <div class="table">
@@ -72,7 +71,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.DotNet.Tasks.AssemblyInfoTask.CodeLanguage.html b/doc/help/enums/NAnt.DotNet.Tasks.AssemblyInfoTask.CodeLanguage.html
index 0f789c3..dae24a9 100644
--- a/doc/help/enums/NAnt.DotNet.Tasks.AssemblyInfoTask.CodeLanguage.html
+++ b/doc/help/enums/NAnt.DotNet.Tasks.AssemblyInfoTask.CodeLanguage.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> AssemblyInfoTask.CodeLanguage</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>AssemblyInfoTask.CodeLanguage</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the supported code languages for generating an AssemblyInfo file. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -49,7 +48,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.DotNet.Tasks.RegsvcsTask.ActionType.html b/doc/help/enums/NAnt.DotNet.Tasks.RegsvcsTask.ActionType.html
index 7f82d72..ac16bb4 100644
--- a/doc/help/enums/NAnt.DotNet.Tasks.RegsvcsTask.ActionType.html
+++ b/doc/help/enums/NAnt.DotNet.Tasks.RegsvcsTask.ActionType.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> RegsvcsTask.ActionType</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>RegsvcsTask.ActionType</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the possible actions for a .NET Service. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -49,7 +48,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.DotNet.Types.DebugOutput.html b/doc/help/enums/NAnt.DotNet.Types.DebugOutput.html
index a7a14c7..d17cdbb 100644
--- a/doc/help/enums/NAnt.DotNet.Types.DebugOutput.html
+++ b/doc/help/enums/NAnt.DotNet.Types.DebugOutput.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> DebugOutput</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>DebugOutput</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Specifies the type of debugging information generated by the compiler. </p>
     <p> For backward compatibility, the following string values can also be used in build files: </p>
     <div class="table">
@@ -79,7 +78,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.DotNet.Types.DelaySign.html b/doc/help/enums/NAnt.DotNet.Types.DelaySign.html
index 0fff033..0bcc28f 100644
--- a/doc/help/enums/NAnt.DotNet.Types.DelaySign.html
+++ b/doc/help/enums/NAnt.DotNet.Types.DelaySign.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> DelaySign</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>DelaySign</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Specifies whether the generated assembly is strongly named and will be signed later. </p>
     <p> For backward compatibility, the following string values can also be used in build files: </p>
     <div class="table">
@@ -70,7 +69,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.html b/doc/help/enums/NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.html
index 4607713..1f3b996 100644
--- a/doc/help/enums/NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.html
+++ b/doc/help/enums/NAnt.MSNet.Tasks.ServiceControllerTask.ActionType.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ServiceControllerTask.ActionType</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>ServiceControllerTask.ActionType</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the actions that can be performed on a service. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -57,7 +56,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.MSNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.MSNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.NUnit.Types.FormatterType.html b/doc/help/enums/NAnt.NUnit.Types.FormatterType.html
index 9b3f20b..e240c91 100644
--- a/doc/help/enums/NAnt.NUnit.Types.FormatterType.html
+++ b/doc/help/enums/NAnt.NUnit.Types.FormatterType.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> FormatterType</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>FormatterType</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> The built-in formatter types. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -45,7 +44,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.VisualCpp.Tasks.ClTask.PrecompiledHeaderMode.html b/doc/help/enums/NAnt.VisualCpp.Tasks.ClTask.PrecompiledHeaderMode.html
index 015b3dd..d686de7 100644
--- a/doc/help/enums/NAnt.VisualCpp.Tasks.ClTask.PrecompiledHeaderMode.html
+++ b/doc/help/enums/NAnt.VisualCpp.Tasks.ClTask.PrecompiledHeaderMode.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> ClTask.PrecompiledHeaderMode</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>ClTask.PrecompiledHeaderMode</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the supported modes for the use of precompiled header files. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -49,7 +48,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/enums/NAnt.VisualCpp.Types.CharacterSet.html b/doc/help/enums/NAnt.VisualCpp.Types.CharacterSet.html
index 92bbe33..c33528b 100644
--- a/doc/help/enums/NAnt.VisualCpp.Types.CharacterSet.html
+++ b/doc/help/enums/NAnt.VisualCpp.Types.CharacterSet.html
@@ -20,11 +20,10 @@
           <span>Enum Reference</span>
           <img alt="-&gt;" src="../images/arrow.gif" /> CharacterSet</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>CharacterSet</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Defines the character sets that can be used by the C++ compiler. </p>
     <h3>Fields</h3>
     <div class="table">
@@ -49,7 +48,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/filters/expandproperties.html b/doc/help/filters/expandproperties.html
index 68508e1..2ec67a8 100644
--- a/doc/help/filters/expandproperties.html
+++ b/doc/help/filters/expandproperties.html
@@ -20,15 +20,14 @@
           <a href="../filters/index.html">Filter Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;expandproperties&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;expandproperties&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Parses NAnt properties and expressions </p>
     <p> This filter parses any NAnt properties or expressions found in its input, inlining their values in its output. </p>
     <p> Note: Due to limitations on buffering, expressions longer than 2048 characters are not guaranteed to be expanded. </p> Filters are intended to be used as a element of a <a href="../types/filterchain.html">&lt;filterchain&gt;</a>. <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>Examples</h3><ul class="examples"><li><p>Replace all properties with their corresponding values.</p><pre class="code">
 &lt;expandproperties /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/filters/index.html b/doc/help/filters/index.html
index 7f2acad..b27dcd7 100644
--- a/doc/help/filters/index.html
+++ b/doc/help/filters/index.html
@@ -20,11 +20,10 @@
                             Filter Reference
                         </td>
         <td class="NavBar-Cell" align="right">
-                            v0.92-rc1</td>
+                            v0.92</td>
       </tr>
     </table>
     <h1>Filter Reference</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <div class="table">
       <table>
         <tr>
diff --git a/doc/help/filters/replacestring.html b/doc/help/filters/replacestring.html
index de4ea2c..7426b9b 100644
--- a/doc/help/filters/replacestring.html
+++ b/doc/help/filters/replacestring.html
@@ -20,11 +20,10 @@
           <a href="../filters/index.html">Filter Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;replacestring&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;replacestring&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Replaces all occurrences of a given string in the original input with user-supplied replacement string. </p>
     <p> This filter replaces all occurrences of a given string in the original input stream with a user-supplied replacement string. By default string comparisons are case sensitive but this can be changed by setting the optional <code>ignorecase</code> attribute to <b>true</b>. </p>
     <p> To use this filter specify the string to be replaced with the <code>from</code> attribute and the string to replace it with using the <code>to</code> attribute. </p>
@@ -87,7 +86,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/filters/replacetokens.html b/doc/help/filters/replacetokens.html
index f090355..db4df2e 100644
--- a/doc/help/filters/replacetokens.html
+++ b/doc/help/filters/replacetokens.html
@@ -20,11 +20,10 @@
           <a href="../filters/index.html">Filter Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;replacetokens&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;replacetokens&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Replaces tokens in the original input with user-supplied values. </p>
     <p> This filter replaces all token surrounded by a beginning and ending token. The default beginning and ending tokens both default to '@'. The optional <code>begintoken</code> and <code>endtoken</code> attributes can be specified to change either token. By default string comparisons are case sensitive but this can be changed by setting the optional <code>ignorecase</code> attribute to <b>true</b>. </p>
     <p> Tokens are specified by using the <a href="../elements/NAnt.Core.Types.Token.html">Token</a> element. It is possible to specify from 1 to n tokens and replacement values. Values can be any valid NAnt expression. </p>
@@ -105,7 +104,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/filters/tabstospaces.html b/doc/help/filters/tabstospaces.html
index a96c918..f3d204d 100644
--- a/doc/help/filters/tabstospaces.html
+++ b/doc/help/filters/tabstospaces.html
@@ -20,11 +20,10 @@
           <a href="../filters/index.html">Filter Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;tabstospaces&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;tabstospaces&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts tabs to spaces. </p>
     <p> The <a href="../filters/tabstospaces.html">&lt;tabstospaces&gt;</a> filter replaces tabs in a text file with spaces. </p>
     <p> Filters are intended to be used as a element of a <a href="../types/filterchain.html">&lt;filterchain&gt;</a>. </p>
@@ -68,7 +67,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assembly.get-full-name(System.Reflection.Assembly).html b/doc/help/functions/assembly.get-full-name(System.Reflection.Assembly).html
index 1c85955..de1bf12 100644
--- a/doc/help/functions/assembly.get-full-name(System.Reflection.Assembly).html
+++ b/doc/help/functions/assembly.get-full-name(System.Reflection.Assembly).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assembly::get-full-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assembly::get-full-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the full name of the assembly, also known as the display name. </p>
     <h3>Usage</h3>
     <code>string assembly::get-full-name(<span class="parameter">assembly</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The full name of the assembly, also known as the display name. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The full name of the assembly, also known as the display name. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assembly.get-location(System.Reflection.Assembly).html b/doc/help/functions/assembly.get-location(System.Reflection.Assembly).html
index d5628c9..918e900 100644
--- a/doc/help/functions/assembly.get-location(System.Reflection.Assembly).html
+++ b/doc/help/functions/assembly.get-location(System.Reflection.Assembly).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assembly::get-location</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assembly::get-location</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the physical location, in codebase format, of the loaded file that contains the manifest. </p>
     <h3>Usage</h3>
     <code>string assembly::get-location(<span class="parameter">assembly</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The location of the specified assembly. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The location of the specified assembly. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assembly.get-name(System.Reflection.Assembly).html b/doc/help/functions/assembly.get-name(System.Reflection.Assembly).html
index 26def36..805689c 100644
--- a/doc/help/functions/assembly.get-name(System.Reflection.Assembly).html
+++ b/doc/help/functions/assembly.get-name(System.Reflection.Assembly).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assembly::get-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assembly::get-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets an <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyNameClassTopic.asp">AssemblyName</a> for the specified assembly. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> An <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyNameClassTopic.asp">AssemblyName</a> for the specified assembly. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> An <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyNameClassTopic.asp">AssemblyName</a> for the specified assembly. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/index.html#Assembly">Assembly</a> Functions</body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assembly.load(System.String).html b/doc/help/functions/assembly.load(System.String).html
index 9295a58..d635610 100644
--- a/doc/help/functions/assembly.load(System.String).html
+++ b/doc/help/functions/assembly.load(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assembly::load</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assembly::load</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Loads an assembly given the long form of its name. </p>
     <h3>Usage</h3>
     <code>
@@ -51,6 +50,6 @@
             <div style="margin-left: 40px;"><ul><li><i>assemblyString</i> is a a null reference (<b>Nothing</b> in Visual Basic).</li><li><i>assemblyString</i> is not found.</li></ul></div><h3>Examples</h3><ul class="examples"><li><p> Determine the location of the Microsoft Access 11 Primary Interop Assembly by loading it using its fully qualified name, and copy it to the build directory. </p><pre class="code">
 &lt;property name="access.pia.path" value="${assembly::get-location(assembly::load('Microsoft.Office.Interop.Access, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'))}" /&gt;
 &lt;copy file="${access.pia.path}" todir="${build.dir}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assembly.load-from-file(System.String).html b/doc/help/functions/assembly.load-from-file(System.String).html
index 94a9d26..6909cbb 100644
--- a/doc/help/functions/assembly.load-from-file(System.String).html
+++ b/doc/help/functions/assembly.load-from-file(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assembly::load-from-file</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assembly::load-from-file</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Loads an assembly given its file name or path. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
     </div>
     <h3>Return Value</h3> The loaded assembly. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>assemblyFile</i> is an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>.</li><li><i>assemblyFile</i> is not found, or the module you are trying to load does not specify a filename extension.</li><li><i>assemblyFile</i> is not a valid assembly.</li><li>An assembly or module was loaded twice with two different evidences, or the assembly name is longer than MAX_PATH characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>assemblyFile</i> is an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>.</li><li><i>assemblyFile</i> is not found, or the module you are trying to load does not specify a filename extension.</li><li><i>assemblyFile</i> is not a valid assembly.</li><li>An assembly or module was loaded twice with two different evidences, or the assembly name is longer than MAX_PATH characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assemblyname.get-assembly-name(System.String).html b/doc/help/functions/assemblyname.get-assembly-name(System.String).html
index bed3f1f..9f763bf 100644
--- a/doc/help/functions/assemblyname.get-assembly-name(System.String).html
+++ b/doc/help/functions/assemblyname.get-assembly-name(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assemblyname::get-assembly-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assemblyname::get-assembly-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyNameClassTopic.asp">AssemblyName</a> for a given file. </p>
     <h3>Usage</h3>
     <code>
@@ -50,6 +49,6 @@
             The function will fail in any of the following circumstances:
             <div style="margin-left: 40px;"><ul><li><i>assemblyFile</i> is an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>.</li><li><i>assemblyFile</i> does not exist.</li><li><i>assemblyFile</i> is not a valid assembly.</li></ul></div><h3>Remarks</h3> The assembly is not added to this domain. <h3>Examples</h3><ul class="examples"><li><p> Output the full name of the <code>nunit.framework</code> assembly to the build log. </p><pre class="code">
 &lt;echo message="${assemblyname::get-full-name(assemblyname::get-assembly-name('nunit.framework.dll'))}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assemblyname.get-codebase(System.Reflection.AssemblyName).html b/doc/help/functions/assemblyname.get-codebase(System.Reflection.AssemblyName).html
index 3016953..c97c1b4 100644
--- a/doc/help/functions/assemblyname.get-codebase(System.Reflection.AssemblyName).html
+++ b/doc/help/functions/assemblyname.get-codebase(System.Reflection.AssemblyName).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assemblyname::get-codebase</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assemblyname::get-codebase</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the location of the assembly as a URL. </p>
     <h3>Usage</h3>
     <code>string assemblyname::get-codebase(<span class="parameter">assemblyName</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The location of the assembly as a URL. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The location of the assembly as a URL. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assembly.get-name(System.Reflection.Assembly).html">assembly::get-name()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assemblyname.get-escaped-codebase(System.Reflection.AssemblyName).html b/doc/help/functions/assemblyname.get-escaped-codebase(System.Reflection.AssemblyName).html
index e9e9bde..b332183 100644
--- a/doc/help/functions/assemblyname.get-escaped-codebase(System.Reflection.AssemblyName).html
+++ b/doc/help/functions/assemblyname.get-escaped-codebase(System.Reflection.AssemblyName).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assemblyname::get-escaped-codebase</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assemblyname::get-escaped-codebase</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the URI, including escape characters, that represents the codebase. </p>
     <h3>Usage</h3>
     <code>string assemblyname::get-escaped-codebase(<span class="parameter">assemblyName</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The URI, including escape characters, that represents the codebase. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The URI, including escape characters, that represents the codebase. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assembly.get-name(System.Reflection.Assembly).html">assembly::get-name()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assemblyname.get-full-name(System.Reflection.AssemblyName).html b/doc/help/functions/assemblyname.get-full-name(System.Reflection.AssemblyName).html
index aaad9e5..dfb722b 100644
--- a/doc/help/functions/assemblyname.get-full-name(System.Reflection.AssemblyName).html
+++ b/doc/help/functions/assemblyname.get-full-name(System.Reflection.AssemblyName).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assemblyname::get-full-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assemblyname::get-full-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the full name of the assembly, also known as the display name. </p>
     <h3>Usage</h3>
     <code>string assemblyname::get-full-name(<span class="parameter">assemblyName</span>)
@@ -49,6 +48,6 @@
     </div>
     <h3>Return Value</h3> The full name of the assembly, also known as the display name. <h3>Examples</h3><ul class="examples"><li><p> Output the full name of the <code>nunit.framework</code> assembly to the build log. </p><pre class="code">
 &lt;echo message="${assemblyname::get-full-name(assemblyname::get-assembly-name('nunit.framework.dll'))}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assembly.get-name(System.Reflection.Assembly).html">assembly::get-name()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assemblyname.get-name(System.Reflection.AssemblyName).html b/doc/help/functions/assemblyname.get-name(System.Reflection.AssemblyName).html
index 551aee9..d71739d 100644
--- a/doc/help/functions/assemblyname.get-name(System.Reflection.AssemblyName).html
+++ b/doc/help/functions/assemblyname.get-name(System.Reflection.AssemblyName).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assemblyname::get-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assemblyname::get-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the simple, unencrypted name of the assembly. </p>
     <h3>Usage</h3>
     <code>string assemblyname::get-name(<span class="parameter">assemblyName</span>)
@@ -49,6 +48,6 @@
     </div>
     <h3>Return Value</h3> The simple, unencrypted name of the assembly. <h3>Examples</h3><ul class="examples"><li><p> Output the simple name of the <code>nunit.framework</code> assembly to the build log. </p><pre class="code">
 &lt;echo message="${assemblyname::get-name(assemblyname::get-assembly-name('nunit.framework.dll'))}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assembly.get-name(System.Reflection.Assembly).html">assembly::get-name()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/assemblyname.get-version(System.Reflection.AssemblyName).html b/doc/help/functions/assemblyname.get-version(System.Reflection.AssemblyName).html
index 834ebd2..5bfd557 100644
--- a/doc/help/functions/assemblyname.get-version(System.Reflection.AssemblyName).html
+++ b/doc/help/functions/assemblyname.get-version(System.Reflection.AssemblyName).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> assemblyname::get-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>assemblyname::get-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the version of the assembly. </p>
     <h3>Usage</h3>
     <code>
@@ -50,6 +49,6 @@
     </div>
     <h3>Return Value</h3> The version of the assembly. <h3>Examples</h3><ul class="examples"><li><p> Output the major version of the <code>nunit.framework</code> assembly to the build log. </p><pre class="code">
 &lt;echo message="${version::get-major-version(assemblyname::get-version(assemblyname::get-assembly-name('nunit.framework.dll')))}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assembly.get-name(System.Reflection.Assembly).html">assembly::get-name()</a> | <a href="../functions/index.html#Version">Version</a> Functions</body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/bool.parse(System.String).html b/doc/help/functions/bool.parse(System.String).html
index 6cc1e0e..7361706 100644
--- a/doc/help/functions/bool.parse(System.String).html
+++ b/doc/help/functions/bool.parse(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> bool::parse</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>bool::parse</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified string representation of a logical value to its <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemBooleanClassTopic.asp">Boolean</a> equivalent. </p>
     <h3>Usage</h3>
     <code>bool bool::parse(<span class="parameter">s</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b> if <i>s</i> is equivalent to "True"; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>s</i> is not equivalent to <code>TrueString</code> or <code>FalseString</code>.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>s</i> is not equivalent to <code>TrueString</code> or <code>FalseString</code>.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/bool.to-string(System.Boolean).html b/doc/help/functions/bool.to-string(System.Boolean).html
index 102e7ae..424b93b 100644
--- a/doc/help/functions/bool.to-string(System.Boolean).html
+++ b/doc/help/functions/bool.to-string(System.Boolean).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> bool::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>bool::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemBooleanClassTopic.asp">Boolean</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string bool::to-string(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> "True" if <i>value</i> is <b>true</b>, or "False" if <i>value</i> is <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> "True" if <i>value</i> is <b>true</b>, or "False" if <i>value</i> is <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/convert.to-boolean(System.Boolean).html b/doc/help/functions/convert.to-boolean(System.Boolean).html
index 73dffc0..cf0f5e0 100644
--- a/doc/help/functions/convert.to-boolean(System.Boolean).html
+++ b/doc/help/functions/convert.to-boolean(System.Boolean).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> convert::to-boolean</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>convert::to-boolean</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -49,6 +48,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <i>value</i> converted to boolean. The function fails with an exception when the conversion is not possible. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <i>value</i> converted to boolean. The function fails with an exception when the conversion is not possible. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/convert.to-datetime(System.DateTime).html b/doc/help/functions/convert.to-datetime(System.DateTime).html
index 0281380..9edba21 100644
--- a/doc/help/functions/convert.to-datetime(System.DateTime).html
+++ b/doc/help/functions/convert.to-datetime(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> convert::to-datetime</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>convert::to-datetime</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -49,6 +48,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <i>value</i> converted to datetime. The function fails with an exception when the conversion is not possible.<h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <i>value</i> converted to datetime. The function fails with an exception when the conversion is not possible.<h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/convert.to-double(System.Double).html b/doc/help/functions/convert.to-double(System.Double).html
index 0d59e70..4dcc556 100644
--- a/doc/help/functions/convert.to-double(System.Double).html
+++ b/doc/help/functions/convert.to-double(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> convert::to-double</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>convert::to-double</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -49,6 +48,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <i>value</i> converted to double. The function fails with an exception when the conversion is not possible.<h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <i>value</i> converted to double. The function fails with an exception when the conversion is not possible.<h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/convert.to-int(System.Int32).html b/doc/help/functions/convert.to-int(System.Int32).html
index cef9922..2a50feb 100644
--- a/doc/help/functions/convert.to-int(System.Int32).html
+++ b/doc/help/functions/convert.to-int(System.Int32).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> convert::to-int</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>convert::to-int</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -49,6 +48,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <i>value</i> converted to integer. The function fails with an exception when the conversion is not possible.<h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <i>value</i> converted to integer. The function fails with an exception when the conversion is not possible.<h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/convert.to-string(System.String).html b/doc/help/functions/convert.to-string(System.String).html
index 573a61c..6079b93 100644
--- a/doc/help/functions/convert.to-string(System.String).html
+++ b/doc/help/functions/convert.to-string(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> convert::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>convert::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -49,6 +48,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <i>value</i> converted to string. The function fails with an exception when the conversion is not possible. <h3>Remarks</h3> Named method ConvertToString as a static ToString method would break CLS compliance. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <i>value</i> converted to string. The function fails with an exception when the conversion is not possible. <h3>Remarks</h3> Named method ConvertToString as a static ToString method would break CLS compliance. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/cygpath.get-dos-path(System.String).html b/doc/help/functions/cygpath.get-dos-path(System.String).html
index beec1b3..eb47981 100644
--- a/doc/help/functions/cygpath.get-dos-path(System.String).html
+++ b/doc/help/functions/cygpath.get-dos-path(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> cygpath::get-dos-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>cygpath::get-dos-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the DOS (short) form of the specified path. </p>
     <h3>Usage</h3>
     <code>string cygpath::get-dos-path(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The DOS (short) form of the specified path. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>cygpath</code> could not be started.</li><li><i>path</i> could not be converted to a short form.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>cygpath</code> could not be started.</li><li><i>path</i> could not be converted to a short form.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/cygpath.get-unix-path(System.String).html b/doc/help/functions/cygpath.get-unix-path(System.String).html
index 14490d5..033fb08 100644
--- a/doc/help/functions/cygpath.get-unix-path(System.String).html
+++ b/doc/help/functions/cygpath.get-unix-path(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> cygpath::get-unix-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>cygpath::get-unix-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the Unix form of the specified path. </p>
     <h3>Usage</h3>
     <code>string cygpath::get-unix-path(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The Unix form of the specified path. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>cygpath</code> could not be started.</li><li><i>path</i> could not be converted to a Unix form.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>cygpath</code> could not be started.</li><li><i>path</i> could not be converted to a Unix form.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/cygpath.get-windows-path(System.String).html b/doc/help/functions/cygpath.get-windows-path(System.String).html
index 72fc1a7..bf452f0 100644
--- a/doc/help/functions/cygpath.get-windows-path(System.String).html
+++ b/doc/help/functions/cygpath.get-windows-path(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> cygpath::get-windows-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>cygpath::get-windows-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the Windows form of the specified path. </p>
     <h3>Usage</h3>
     <code>string cygpath::get-windows-path(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The Windows form of the specified path. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>cygpath</code> could not be started.</li><li><i>path</i> could not be converted to a Windows form.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>cygpath</code> could not be started.</li><li><i>path</i> could not be converted to a Windows form.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.format-to-string(System.DateTime,System.String).html b/doc/help/functions/datetime.format-to-string(System.DateTime,System.String).html
index 5173769..1646d12 100644
--- a/doc/help/functions/datetime.format-to-string(System.DateTime,System.String).html
+++ b/doc/help/functions/datetime.format-to-string(System.DateTime,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::format-to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::format-to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDateTimeClassTopic.asp">DateTime</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string datetime::format-to-string(<span class="parameter">value</span>, <span class="parameter">format</span>)
@@ -50,6 +49,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A string representation of <i>value</i> formatted using the specified format <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationDateTimeFormatInfoClassTopic.asp">DateTimeFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A string representation of <i>value</i> formatted using the specified format <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationDateTimeFormatInfoClassTopic.asp">DateTimeFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-day(System.DateTime).html b/doc/help/functions/datetime.get-day(System.DateTime).html
index ce67f0b..8c2f0ae 100644
--- a/doc/help/functions/datetime.get-day(System.DateTime).html
+++ b/doc/help/functions/datetime.get-day(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-day</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-day</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the day of the month represented by the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-day(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The day value, between 1 and 31. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The day value, between 1 and 31. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-day-of-week(System.DateTime).html b/doc/help/functions/datetime.get-day-of-week(System.DateTime).html
index e99c15f..6af5f6b 100644
--- a/doc/help/functions/datetime.get-day-of-week(System.DateTime).html
+++ b/doc/help/functions/datetime.get-day-of-week(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-day-of-week</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-day-of-week</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the day of the week represented by the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-day-of-week(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The day of the week, ranging from zero, indicating Sunday, to six, indicating Saturday. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The day of the week, ranging from zero, indicating Sunday, to six, indicating Saturday. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-day-of-year(System.DateTime).html b/doc/help/functions/datetime.get-day-of-year(System.DateTime).html
index 2431b07..8e8cf41 100644
--- a/doc/help/functions/datetime.get-day-of-year(System.DateTime).html
+++ b/doc/help/functions/datetime.get-day-of-year(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-day-of-year</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-day-of-year</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the day of the year represented by the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-day-of-year(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The day of the year, between 1 and 366. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The day of the year, between 1 and 366. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-days-in-month(System.Int32,System.Int32).html b/doc/help/functions/datetime.get-days-in-month(System.Int32,System.Int32).html
index 0d82ba1..0efc137 100644
--- a/doc/help/functions/datetime.get-days-in-month(System.Int32,System.Int32).html
+++ b/doc/help/functions/datetime.get-days-in-month(System.Int32,System.Int32).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-days-in-month</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-days-in-month</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the number of days in the specified month of the specified year. </p>
     <h3>Usage</h3>
     <code>int datetime::get-days-in-month(<span class="parameter">year</span>, <span class="parameter">month</span>)
@@ -52,6 +51,6 @@
     </div>
     <h3>Return Value</h3> The number of days in <i>month</i> for the specified <i>year</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>month</i> is less than 1 or greater than 12.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>month</i> is less than 1 or greater than 12.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-hour(System.DateTime).html b/doc/help/functions/datetime.get-hour(System.DateTime).html
index 75e8e9e..3ba49bf 100644
--- a/doc/help/functions/datetime.get-hour(System.DateTime).html
+++ b/doc/help/functions/datetime.get-hour(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-hour</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-hour</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the hour component of the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-hour(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The hour, between 0 and 23. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The hour, between 0 and 23. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-millisecond(System.DateTime).html b/doc/help/functions/datetime.get-millisecond(System.DateTime).html
index e7204b3..2959dca 100644
--- a/doc/help/functions/datetime.get-millisecond(System.DateTime).html
+++ b/doc/help/functions/datetime.get-millisecond(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-millisecond</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-millisecond</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the milliseconds component of the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-millisecond(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The millisecond, between 0 and 999. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The millisecond, between 0 and 999. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-minute(System.DateTime).html b/doc/help/functions/datetime.get-minute(System.DateTime).html
index 200137f..eb51806 100644
--- a/doc/help/functions/datetime.get-minute(System.DateTime).html
+++ b/doc/help/functions/datetime.get-minute(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-minute</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-minute</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the minute component of the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-minute(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The minute, between 0 and 59. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The minute, between 0 and 59. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-month(System.DateTime).html b/doc/help/functions/datetime.get-month(System.DateTime).html
index 1857537..aa1e0f2 100644
--- a/doc/help/functions/datetime.get-month(System.DateTime).html
+++ b/doc/help/functions/datetime.get-month(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-month</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-month</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the month component of the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-month(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The month, between 1 and 12. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The month, between 1 and 12. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-second(System.DateTime).html b/doc/help/functions/datetime.get-second(System.DateTime).html
index 928460d..58fdb0b 100644
--- a/doc/help/functions/datetime.get-second(System.DateTime).html
+++ b/doc/help/functions/datetime.get-second(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-second</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-second</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the seconds component of the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-second(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The seconds, between 0 and 59. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The seconds, between 0 and 59. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-ticks(System.DateTime).html b/doc/help/functions/datetime.get-ticks(System.DateTime).html
index b23538d..0b8808a 100644
--- a/doc/help/functions/datetime.get-ticks(System.DateTime).html
+++ b/doc/help/functions/datetime.get-ticks(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-ticks</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-ticks</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the number of ticks that represent the specified date. </p>
     <h3>Usage</h3>
     <code>long datetime::get-ticks(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The number of ticks that represent the date and time of the specified date. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The number of ticks that represent the date and time of the specified date. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.get-year(System.DateTime).html b/doc/help/functions/datetime.get-year(System.DateTime).html
index 0ec3d81..9eb3771 100644
--- a/doc/help/functions/datetime.get-year(System.DateTime).html
+++ b/doc/help/functions/datetime.get-year(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::get-year</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::get-year</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the year component of the specified date. </p>
     <h3>Usage</h3>
     <code>int datetime::get-year(<span class="parameter">date</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The year, between 1 and 9999. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The year, between 1 and 9999. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.is-leap-year(System.Int32).html b/doc/help/functions/datetime.is-leap-year(System.Int32).html
index 2d0c309..ca029c5 100644
--- a/doc/help/functions/datetime.is-leap-year(System.Int32).html
+++ b/doc/help/functions/datetime.is-leap-year(System.Int32).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::is-leap-year</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::is-leap-year</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns an indication whether the specified year is a leap year. </p>
     <h3>Usage</h3>
     <code>bool datetime::is-leap-year(<span class="parameter">year</span>)
@@ -46,6 +45,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <b>true</b> if <i>year</i> is a leap year; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if <i>year</i> is a leap year; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.now().html b/doc/help/functions/datetime.now().html
index a13f241..f528e72 100644
--- a/doc/help/functions/datetime.now().html
+++ b/doc/help/functions/datetime.now().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::now</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::now</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDateTimeClassTopic.asp">DateTime</a> that is the current local date and time on this computer. </p>
     <h3>Usage</h3>
     <code>datetime datetime::now()
             </code>
     <p />
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDateTimeClassTopic.asp">DateTime</a> whose value is the current date and time. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDateTimeClassTopic.asp">DateTime</a> whose value is the current date and time. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.parse(System.String).html b/doc/help/functions/datetime.parse(System.String).html
index 4deca97..d0476fa 100644
--- a/doc/help/functions/datetime.parse(System.String).html
+++ b/doc/help/functions/datetime.parse(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::parse</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::parse</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified string representation of a date and time to its <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDateTimeClassTopic.asp">DateTime</a> equivalent. </p>
     <h3>Usage</h3>
     <code>datetime datetime::parse(<span class="parameter">s</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDateTimeClassTopic.asp">DateTime</a> equivalent to the date and time contained in <i>s</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>s</i> does not contain a valid string representation of a date and time.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationDateTimeFormatInfoClassTopic.asp">DateTimeFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>s</i> does not contain a valid string representation of a date and time.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationDateTimeFormatInfoClassTopic.asp">DateTimeFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/datetime.to-string(System.DateTime).html b/doc/help/functions/datetime.to-string(System.DateTime).html
index 813b467..25be9ae 100644
--- a/doc/help/functions/datetime.to-string(System.DateTime).html
+++ b/doc/help/functions/datetime.to-string(System.DateTime).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> datetime::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>datetime::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDateTimeClassTopic.asp">DateTime</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string datetime::to-string(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A string representation of <i>value</i> formatted using the general format specifier ("G"). <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationDateTimeFormatInfoClassTopic.asp">DateTimeFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A string representation of <i>value</i> formatted using the general format specifier ("G"). <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationDateTimeFormatInfoClassTopic.asp">DateTimeFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/directory.exists(System.String).html b/doc/help/functions/directory.exists(System.String).html
index d5e5bb3..f4fbbb3 100644
--- a/doc/help/functions/directory.exists(System.String).html
+++ b/doc/help/functions/directory.exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> directory::exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>directory::exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether the given path refers to an existing directory on disk. </p>
     <h3>Usage</h3>
     <code>bool directory::exists(<span class="parameter">path</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b> if <i>path</i> refers to an existing directory; otherwise, <b>false</b>. <h3>Examples</h3><ul class="examples"><li><p>Remove directory "test", if it exists.</p><pre class="code">
 &lt;delete dir="test" if="${directory::exists('test')}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/directory.get-creation-time(System.String).html b/doc/help/functions/directory.get-creation-time(System.String).html
index 0d5ee0b..b7d300e 100644
--- a/doc/help/functions/directory.get-creation-time(System.String).html
+++ b/doc/help/functions/directory.get-creation-time(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> directory::get-creation-time</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>directory::get-creation-time</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the creation date and time of the specified directory. </p>
     <h3>Usage</h3>
     <code>datetime directory::get-creation-time(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The creation date and time of the specified directory. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The specified directory does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The specified directory does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/directory.get-current-directory().html b/doc/help/functions/directory.get-current-directory().html
index 981dbfe..7748d22 100644
--- a/doc/help/functions/directory.get-current-directory().html
+++ b/doc/help/functions/directory.get-current-directory().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> directory::get-current-directory</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>directory::get-current-directory</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the current working directory. </p>
     <h3>Usage</h3>
     <code>string directory::get-current-directory()
             </code>
     <p />
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the path of the current working directory. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the path of the current working directory. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/directory.get-directory-root(System.String).html b/doc/help/functions/directory.get-directory-root(System.String).html
index 9534174..76faf73 100644
--- a/doc/help/functions/directory.get-directory-root(System.String).html
+++ b/doc/help/functions/directory.get-directory-root(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> directory::get-directory-root</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>directory::get-directory-root</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the volume information, root information, or both for the specified path. </p>
     <h3>Usage</h3>
     <code>string directory::get-directory-root(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A string containing the volume information, root information, or both for the specified path. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/directory.get-last-access-time(System.String).html b/doc/help/functions/directory.get-last-access-time(System.String).html
index 700d840..afc502d 100644
--- a/doc/help/functions/directory.get-last-access-time(System.String).html
+++ b/doc/help/functions/directory.get-last-access-time(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> directory::get-last-access-time</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>directory::get-last-access-time</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the date and time the specified directory was last accessed. </p>
     <h3>Usage</h3>
     <code>datetime directory::get-last-access-time(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The date and time the specified directory was last accessed. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The specified directory does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li><li>The <i>path</i> parameter is in an invalid format.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The specified directory does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li><li>The <i>path</i> parameter is in an invalid format.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/directory.get-last-write-time(System.String).html b/doc/help/functions/directory.get-last-write-time(System.String).html
index 0aab9b1..9a362a5 100644
--- a/doc/help/functions/directory.get-last-write-time(System.String).html
+++ b/doc/help/functions/directory.get-last-write-time(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> directory::get-last-write-time</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>directory::get-last-write-time</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the date and time the specified directory was last written to. </p>
     <h3>Usage</h3>
     <code>datetime directory::get-last-write-time(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The date and time the specified directory was last written to. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The specified directory does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The specified directory does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/directory.get-parent-directory(System.String).html b/doc/help/functions/directory.get-parent-directory(System.String).html
index 3fedf19..5c0c438 100644
--- a/doc/help/functions/directory.get-parent-directory(System.String).html
+++ b/doc/help/functions/directory.get-parent-directory(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> directory::get-parent-directory</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>directory::get-parent-directory</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Retrieves the parent directory of the specified path. </p>
     <h3>Usage</h3>
     <code>string directory::get-parent-directory(<span class="parameter">path</span>)
@@ -51,6 +50,6 @@
 &lt;property name="current.dir" value="${directory::get-current-directory()}" /&gt;
 &lt;property name="current.dir.parent" value="${directory::get-parent-directory(current.dir)}" /&gt;
 &lt;copy file="${path::combine(current.dir, 'readme.txt')} todir="${current.dir.parent}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/dns.get-host-name().html b/doc/help/functions/dns.get-host-name().html
index 1c66e59..108f56e 100644
--- a/doc/help/functions/dns.get-host-name().html
+++ b/doc/help/functions/dns.get-host-name().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> dns::get-host-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>dns::get-host-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the host name of the local computer. </p>
     <h3>Usage</h3>
     <code>string dns::get-host-name()
@@ -32,6 +31,6 @@
     <p />
     <h3>Return Value</h3> A string that contains the DNS host name of the local computer. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>An error is encountered when resolving the local host name.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>An error is encountered when resolving the local host name.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/double.parse(System.String).html b/doc/help/functions/double.parse(System.String).html
index e02e316..15c8567 100644
--- a/doc/help/functions/double.parse(System.String).html
+++ b/doc/help/functions/double.parse(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> double::parse</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>double::parse</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified string representation of a number to its double-precision floating point number equivalent. </p>
     <h3>Usage</h3>
     <code>double double::parse(<span class="parameter">s</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A double-precision floating point number equivalent to the numeric value or symbol specified in <i>s</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>s</i> is not a number in a valid format.</li><li><i>s</i> represents a number less than <code>MinValue</code> or greater than <code>MaxValue</code>.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>s</i> is not a number in a valid format.</li><li><i>s</i> represents a number less than <code>MinValue</code> or greater than <code>MaxValue</code>.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/double.to-string(System.Double).html b/doc/help/functions/double.to-string(System.Double).html
index 686be4d..6fb65d9 100644
--- a/doc/help/functions/double.to-string(System.Double).html
+++ b/doc/help/functions/double.to-string(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> double::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>double::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDoubleClassTopic.asp">Double</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string double::to-string(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string representation of <i>value</i> formatted using the general format specifier ("G"). <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string representation of <i>value</i> formatted using the general format specifier ("G"). <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.get-folder-path(System.Environment.SpecialFolder).html b/doc/help/functions/environment.get-folder-path(System.Environment.SpecialFolder).html
index 14e22c5..67155de 100644
--- a/doc/help/functions/environment.get-folder-path(System.Environment.SpecialFolder).html
+++ b/doc/help/functions/environment.get-folder-path(System.Environment.SpecialFolder).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::get-folder-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::get-folder-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the path to the system special folder identified by the specified enumeration. </p>
     <h3>Usage</h3>
     <code>string environment::get-folder-path(<span class="parameter">folder</span>)
@@ -51,6 +50,6 @@
             The function will fail in any of the following circumstances:
             <div style="margin-left: 40px;"><ul><li><i>folder</i> is not a member of <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemEnvironmentSpecialFolderClassTopic.asp">SpecialFolder</a>.</li></ul></div><h3>Examples</h3><ul class="examples"><li><p> Copy "out.log" from the project base directory to the program files directory. </p><pre class="code">
 &lt;copy file="out.log" todir="${environment::get-folder-path('ProgramFiles')}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.get-machine-name().html b/doc/help/functions/environment.get-machine-name().html
index e1b19d9..8e54f06 100644
--- a/doc/help/functions/environment.get-machine-name().html
+++ b/doc/help/functions/environment.get-machine-name().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::get-machine-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::get-machine-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the NetBIOS name of this local computer. </p>
     <h3>Usage</h3>
     <code>string environment::get-machine-name()
@@ -32,6 +31,6 @@
     <p />
     <h3>Return Value</h3> The NetBIOS name of this local computer. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The name of this computer cannot be obtained.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The name of this computer cannot be obtained.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.get-operating-system().html b/doc/help/functions/environment.get-operating-system().html
index 0cf033b..3ca6bb9 100644
--- a/doc/help/functions/environment.get-operating-system().html
+++ b/doc/help/functions/environment.get-operating-system().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::get-operating-system</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::get-operating-system</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets an <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemOperatingSystemClassTopic.asp">OperatingSystem</a> object that represents the current operating system. </p>
     <h3>Usage</h3>
     <code>
@@ -34,6 +33,6 @@
     <h3>Return Value</h3> An <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemOperatingSystemClassTopic.asp">OperatingSystem</a> object that contains the current platform identifier and version number. <h3>Examples</h3><ul class="examples"><li><p> Output string representation of the current operating system. </p><pre class="code">
 &lt;echo message="OS=${operating-system::to-string(environment::get-operating-system())}" /&gt;
     </pre><p>If the operating system is Windows 2000, the output is:</p><pre class="code">Microsoft Windows NT 5.0.2195.0
-  </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+  </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/index.html#Operating+System">Operating System</a> Functions</body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.get-user-name().html b/doc/help/functions/environment.get-user-name().html
index 91480a0..938495f 100644
--- a/doc/help/functions/environment.get-user-name().html
+++ b/doc/help/functions/environment.get-user-name().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::get-user-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::get-user-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the user name of the person who started the current thread. </p>
     <h3>Usage</h3>
     <code>string environment::get-user-name()
@@ -36,6 +35,6 @@
     &lt;arg value="/home/temp" /&gt;
     &lt;arg value="${environment::get-user-name()}" /&gt;
 &lt;/exec&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.get-variable(System.String).html b/doc/help/functions/environment.get-variable(System.String).html
index 33651db..437bc21 100644
--- a/doc/help/functions/environment.get-variable(System.String).html
+++ b/doc/help/functions/environment.get-variable(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::get-variable</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::get-variable</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the value of the specified environment variable. </p>
     <h3>Usage</h3>
     <code>string environment::get-variable(<span class="parameter">name</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The value of the specified environment variable. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>Environment variable <i>name</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>Environment variable <i>name</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.get-version().html b/doc/help/functions/environment.get-version().html
index 97d7bca..17d1317 100644
--- a/doc/help/functions/environment.get-version().html
+++ b/doc/help/functions/environment.get-version().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::get-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::get-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> object that describes the major, minor, build, and revision numbers of the Common Language Runtime. </p>
     <h3>Usage</h3>
     <code>
@@ -33,6 +32,6 @@
     <p />
     <h3>Return Value</h3> A Version object. <h3>Examples</h3><ul class="examples"><li><p>Output the major version of the CLR.</p><pre class="code">
 &lt;echo message="Major version=${version::get-major(environment::get-version())}" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.newline().html b/doc/help/functions/environment.newline().html
index 4922412..6588c83 100644
--- a/doc/help/functions/environment.newline().html
+++ b/doc/help/functions/environment.newline().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::newline</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::newline</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the newline string defined for this environment. </p>
     <h3>Usage</h3>
     <code>string environment::newline()
@@ -32,6 +31,6 @@
     <p />
     <h3>Return Value</h3> A string containing CRLF for non-Unix platforms, or LF for Unix platforms. <h3>Examples</h3><ul class="examples"><li><p>Output two lines in a log file.</p><pre class="code">
 &lt;echo file="build.log" message="First line${environment::newline()}Second line" /&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/environment.variable-exists(System.String).html b/doc/help/functions/environment.variable-exists(System.String).html
index 34c99b0..3926d97 100644
--- a/doc/help/functions/environment.variable-exists(System.String).html
+++ b/doc/help/functions/environment.variable-exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> environment::variable-exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>environment::variable-exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets a value indicating whether the specified environment variable exists. </p>
     <h3>Usage</h3>
     <code>bool environment::variable-exists(<span class="parameter">name</span>)
@@ -50,6 +49,6 @@
 &lt;if test="${environment::variable-exists('BUILD_DEBUG')}"&gt;
     ...
 &lt;/if&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/file.exists(System.String).html b/doc/help/functions/file.exists(System.String).html
index 71fa42f..2eccc8b 100644
--- a/doc/help/functions/file.exists(System.String).html
+++ b/doc/help/functions/file.exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> file::exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>file::exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether the specified file exists. </p>
     <h3>Usage</h3>
     <code>bool file::exists(<span class="parameter">file</span>)
@@ -50,6 +49,6 @@
 &lt;if test="${not file::exists('output.xml')}"&gt;
     ...
 &lt;/if&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/file.get-creation-time(System.String).html b/doc/help/functions/file.get-creation-time(System.String).html
index 84c9ace..cf67360 100644
--- a/doc/help/functions/file.get-creation-time(System.String).html
+++ b/doc/help/functions/file.get-creation-time(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> file::get-creation-time</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>file::get-creation-time</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the creation date and time of the specified file. </p>
     <h3>Usage</h3>
     <code>datetime file::get-creation-time(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The creation date and time of the specified file. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The specified file does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li><li>The <i>path</i> parameter is in an invalid format.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The specified file does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li><li>The <i>path</i> parameter is in an invalid format.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/file.get-last-access-time(System.String).html b/doc/help/functions/file.get-last-access-time(System.String).html
index 2e45f42..60f0025 100644
--- a/doc/help/functions/file.get-last-access-time(System.String).html
+++ b/doc/help/functions/file.get-last-access-time(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> file::get-last-access-time</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>file::get-last-access-time</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the date and time the specified file was last accessed. </p>
     <h3>Usage</h3>
     <code>datetime file::get-last-access-time(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The date and time the specified file was last accessed. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The specified file does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li><li>The <i>path</i> parameter is in an invalid format.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The specified file does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li><li>The <i>path</i> parameter is in an invalid format.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/file.get-last-write-time(System.String).html b/doc/help/functions/file.get-last-write-time(System.String).html
index 34a655c..0b22440 100644
--- a/doc/help/functions/file.get-last-write-time(System.String).html
+++ b/doc/help/functions/file.get-last-write-time(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> file::get-last-write-time</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>file::get-last-write-time</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the date and time the specified file was last written to. </p>
     <h3>Usage</h3>
     <code>datetime file::get-last-write-time(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The date and time the specified file was last written to. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The specified file does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The specified file does not exist.</li><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/file.get-length(System.String).html b/doc/help/functions/file.get-length(System.String).html
index a6ec563..92cf2b5 100644
--- a/doc/help/functions/file.get-length(System.String).html
+++ b/doc/help/functions/file.get-length(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> file::get-length</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>file::get-length</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the length of the file. </p>
     <h3>Usage</h3>
     <code>long file::get-length(<span class="parameter">file</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> Length in bytes, of the file named <i>file</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The file specified cannot be found.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The file specified cannot be found.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/file.is-assembly(System.String).html b/doc/help/functions/file.is-assembly(System.String).html
index 814982e..8bef04f 100644
--- a/doc/help/functions/file.is-assembly(System.String).html
+++ b/doc/help/functions/file.is-assembly(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> file::is-assembly</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>file::is-assembly</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks if a given file is an assembly. </p>
     <h3>Usage</h3>
     <code>bool file::is-assembly(<span class="parameter">assemblyFile</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3>True if the file is a valid assembly, false if it's not or if the assembly seems corrupted (invalid headers or metadata).<h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>assemblyFile</i> is a null <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>.</li><li><i>assemblyFile</i> is an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>.</li><li><i>assemblyFile</i> is not found, or the file you are trying to check does not specify a filename extension.</li><li>The caller does not have path discovery permission.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>assemblyFile</i> is a null <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>.</li><li><i>assemblyFile</i> is an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>.</li><li><i>assemblyFile</i> is not found, or the file you are trying to check does not specify a filename extension.</li><li>The caller does not have path discovery permission.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/file.up-to-date(System.String,System.String).html b/doc/help/functions/file.up-to-date(System.String,System.String).html
index e2ed106..143477f 100644
--- a/doc/help/functions/file.up-to-date(System.String,System.String).html
+++ b/doc/help/functions/file.up-to-date(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> file::up-to-date</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>file::up-to-date</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether <i>targetFile</i> is more or equal up-to-date than <i>srcFile</i>. </p>
     <h3>Usage</h3>
     <code>bool file::up-to-date(<span class="parameter">srcFile</span>, <span class="parameter">targetFile</span>)
@@ -53,6 +52,6 @@
     <h3>Return Value</h3>
     <b>true</b> if <i>targetFile</i> is more or equal up-to-date than <i>srcFile</i>; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>srcFile</i> or <i>targetFile</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both of either <i>srcFile</i> or <i>targetFile</i> exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>srcFile</i> or <i>targetFile</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li>The specified path, file name, or both of either <i>srcFile</i> or <i>targetFile</i> exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/fileversioninfo.get-company-name(System.Diagnostics.FileVersionInfo).html b/doc/help/functions/fileversioninfo.get-company-name(System.Diagnostics.FileVersionInfo).html
index e3c3483..11094ee 100644
--- a/doc/help/functions/fileversioninfo.get-company-name(System.Diagnostics.FileVersionInfo).html
+++ b/doc/help/functions/fileversioninfo.get-company-name(System.Diagnostics.FileVersionInfo).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> fileversioninfo::get-company-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>fileversioninfo::get-company-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the name of the company that produced the file. </p>
     <h3>Usage</h3>
     <code>string fileversioninfo::get-company-name(<span class="parameter">fileVersionInfo</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The name of the company that produced the file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The name of the company that produced the file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/fileversioninfo.get-file-version(System.Diagnostics.FileVersionInfo).html b/doc/help/functions/fileversioninfo.get-file-version(System.Diagnostics.FileVersionInfo).html
index bfc7d3b..0d72041 100644
--- a/doc/help/functions/fileversioninfo.get-file-version(System.Diagnostics.FileVersionInfo).html
+++ b/doc/help/functions/fileversioninfo.get-file-version(System.Diagnostics.FileVersionInfo).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> fileversioninfo::get-file-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>fileversioninfo::get-file-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the file version of a file. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The file version of a file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The file version of a file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/fileversioninfo.get-product-name(System.Diagnostics.FileVersionInfo).html b/doc/help/functions/fileversioninfo.get-product-name(System.Diagnostics.FileVersionInfo).html
index 64b7329..2f34e33 100644
--- a/doc/help/functions/fileversioninfo.get-product-name(System.Diagnostics.FileVersionInfo).html
+++ b/doc/help/functions/fileversioninfo.get-product-name(System.Diagnostics.FileVersionInfo).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> fileversioninfo::get-product-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>fileversioninfo::get-product-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the name of the product the file is distributed with. </p>
     <h3>Usage</h3>
     <code>string fileversioninfo::get-product-name(<span class="parameter">fileVersionInfo</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The name of the product the file is distributed with. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The name of the product the file is distributed with. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/fileversioninfo.get-product-version(System.Diagnostics.FileVersionInfo).html b/doc/help/functions/fileversioninfo.get-product-version(System.Diagnostics.FileVersionInfo).html
index 8baf7d9..e29effc 100644
--- a/doc/help/functions/fileversioninfo.get-product-version(System.Diagnostics.FileVersionInfo).html
+++ b/doc/help/functions/fileversioninfo.get-product-version(System.Diagnostics.FileVersionInfo).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> fileversioninfo::get-product-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>fileversioninfo::get-product-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the product version of a file. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The product version of a file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The product version of a file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/fileversioninfo.get-version-info(System.String).html b/doc/help/functions/fileversioninfo.get-version-info(System.String).html
index 2eb5271..e303d51 100644
--- a/doc/help/functions/fileversioninfo.get-version-info(System.String).html
+++ b/doc/help/functions/fileversioninfo.get-version-info(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> fileversioninfo::get-version-info</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>fileversioninfo::get-version-info</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDiagnosticsFileVersionInfoClassTopic.asp">FileVersionInfo</a> representing the version information associated with the specified file. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemDiagnosticsFileVersionInfoClassTopic.asp">FileVersionInfo</a> containing information about the file. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>The file specified cannot be found.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>The file specified cannot be found.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.exists(System.String).html b/doc/help/functions/framework.exists(System.String).html
index 5d4d8ba..6d6971c 100644
--- a/doc/help/functions/framework.exists(System.String).html
+++ b/doc/help/functions/framework.exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the specified framework exists, and is valid. </p>
     <h3>Usage</h3>
     <code>bool framework::exists(<span class="parameter">framework</span>)
@@ -46,6 +45,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <b>true</b> if the specified framework exists ; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if the specified framework exists ; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-assembly-directory(System.String).html b/doc/help/functions/framework.get-assembly-directory(System.String).html
index 6466250..bfc5ea2 100644
--- a/doc/help/functions/framework.get-assembly-directory(System.String).html
+++ b/doc/help/functions/framework.get-assembly-directory(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-assembly-directory</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-assembly-directory</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the assembly directory of the specified framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-assembly-directory(<span class="parameter">framework</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The assembly directory of the specified framework. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-clr-version().html b/doc/help/functions/framework.get-clr-version().html
index 1bbcdfc..51c8d88 100644
--- a/doc/help/functions/framework.get-clr-version().html
+++ b/doc/help/functions/framework.get-clr-version().html
@@ -20,17 +20,16 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-clr-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-clr-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the Common Language Runtime version of the current target framework. </p>
     <h3>Usage</h3>
     <code>
       <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> framework::get-clr-version()
             </code>
     <p />
-    <h3>Return Value</h3> The Common Language Runtime version of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The Common Language Runtime version of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-clr-version(System.String).html b/doc/help/functions/framework.get-clr-version(System.String).html
index e28598e..f44c710 100644
--- a/doc/help/functions/framework.get-clr-version(System.String).html
+++ b/doc/help/functions/framework.get-clr-version(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-clr-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-clr-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the Common Language Runtime version of the specified framework. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
     </div>
     <h3>Return Value</h3> The Common Language Runtime version of the specified framework. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-description().html b/doc/help/functions/framework.get-description().html
index 389fbca..17af1a1 100644
--- a/doc/help/functions/framework.get-description().html
+++ b/doc/help/functions/framework.get-description().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-description</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-description</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the description of the current target framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-description()
             </code>
     <p />
-    <h3>Return Value</h3> The description of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The description of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-description(System.String).html b/doc/help/functions/framework.get-description(System.String).html
index 5f944ec..b7cfe15 100644
--- a/doc/help/functions/framework.get-description(System.String).html
+++ b/doc/help/functions/framework.get-description(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-description</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-description</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the description of the specified framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-description(<span class="parameter">framework</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The description of the specified framework. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-family(System.String).html b/doc/help/functions/framework.get-family(System.String).html
index a5e4688..2ef61f5 100644
--- a/doc/help/functions/framework.get-family(System.String).html
+++ b/doc/help/functions/framework.get-family(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-family</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-family</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the family of the specified framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-family(<span class="parameter">framework</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The family of the specified framework. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-framework-directory(System.String).html b/doc/help/functions/framework.get-framework-directory(System.String).html
index 0bfb817..b750837 100644
--- a/doc/help/functions/framework.get-framework-directory(System.String).html
+++ b/doc/help/functions/framework.get-framework-directory(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-framework-directory</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-framework-directory</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the framework directory of the specified framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-framework-directory(<span class="parameter">framework</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The framework directory of the specified framework. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-frameworks(NAnt.Core.FrameworkTypes).html b/doc/help/functions/framework.get-frameworks(NAnt.Core.FrameworkTypes).html
index a51ca73..73cbd24 100644
--- a/doc/help/functions/framework.get-frameworks(NAnt.Core.FrameworkTypes).html
+++ b/doc/help/functions/framework.get-frameworks(NAnt.Core.FrameworkTypes).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-frameworks</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-frameworks</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets a comma-separated list of frameworks filtered by the specified <a href="../enums/NAnt.Core.FrameworkTypes.html">FrameworkTypes</a>. </p>
     <h3>Usage</h3>
     <code>string framework::get-frameworks(<span class="parameter">types</span>)
@@ -58,6 +57,6 @@
 &lt;target name="build"&gt;
     ...
 &lt;/target&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-runtime-engine(System.String).html b/doc/help/functions/framework.get-runtime-engine(System.String).html
index 9c35278..01ee38c 100644
--- a/doc/help/functions/framework.get-runtime-engine(System.String).html
+++ b/doc/help/functions/framework.get-runtime-engine(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-runtime-engine</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-runtime-engine</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the runtime engine of the specified framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-runtime-engine(<span class="parameter">framework</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The full path to the runtime engine of the specified framework, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if no runtime engine is defined for the specified framework. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-runtime-framework().html b/doc/help/functions/framework.get-runtime-framework().html
index 949fb4d..7ba4bc1 100644
--- a/doc/help/functions/framework.get-runtime-framework().html
+++ b/doc/help/functions/framework.get-runtime-framework().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-runtime-framework</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-runtime-framework</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the identifier of the runtime framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-runtime-framework()
             </code>
     <p />
-    <h3>Return Value</h3> The identifier of the runtime framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The identifier of the runtime framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-sdk-directory(System.String).html b/doc/help/functions/framework.get-sdk-directory(System.String).html
index 1acda87..62507d4 100644
--- a/doc/help/functions/framework.get-sdk-directory(System.String).html
+++ b/doc/help/functions/framework.get-sdk-directory(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-sdk-directory</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-sdk-directory</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the SDK directory of the specified framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-sdk-directory(<span class="parameter">framework</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The SDK directory of the specified framework, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if the SDK of the specified framework is not installed. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-target-framework().html b/doc/help/functions/framework.get-target-framework().html
index dc28d81..d5f099d 100644
--- a/doc/help/functions/framework.get-target-framework().html
+++ b/doc/help/functions/framework.get-target-framework().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-target-framework</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-target-framework</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the identifier of the current target framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-target-framework()
             </code>
     <p />
-    <h3>Return Value</h3> The identifier of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The identifier of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-tool-path(System.String).html b/doc/help/functions/framework.get-tool-path(System.String).html
index fe76720..2158ddc 100644
--- a/doc/help/functions/framework.get-tool-path(System.String).html
+++ b/doc/help/functions/framework.get-tool-path(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-tool-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-tool-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the absolute path of the specified tool for the current target framework. </p>
     <h3>Usage</h3>
     <code>string framework::get-tool-path(<span class="parameter">tool</span>)
@@ -52,6 +51,6 @@
     &lt;arg value="/i" /&gt;
     &lt;arg file="Cegeka.HealthFramework.dll" /&gt;
 &lt;/exec&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-version().html b/doc/help/functions/framework.get-version().html
index 197e03f..b2232a9 100644
--- a/doc/help/functions/framework.get-version().html
+++ b/doc/help/functions/framework.get-version().html
@@ -20,17 +20,16 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the version of the current target framework. </p>
     <h3>Usage</h3>
     <code>
       <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> framework::get-version()
             </code>
     <p />
-    <h3>Return Value</h3> The version of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The version of the current target framework. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.get-version(System.String).html b/doc/help/functions/framework.get-version(System.String).html
index 1401463..8e32a11 100644
--- a/doc/help/functions/framework.get-version(System.String).html
+++ b/doc/help/functions/framework.get-version(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::get-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::get-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the version of the specified framework. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
     </div>
     <h3>Return Value</h3> The version of the specified framework. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>framework</i> is not a valid framework identifier.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/framework.sdk-exists(System.String).html b/doc/help/functions/framework.sdk-exists(System.String).html
index ee963f9..43153d2 100644
--- a/doc/help/functions/framework.sdk-exists(System.String).html
+++ b/doc/help/functions/framework.sdk-exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> framework::sdk-exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>framework::sdk-exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the SDK for the specified framework is installed. </p>
     <h3>Usage</h3>
     <code>bool framework::sdk-exists(<span class="parameter">framework</span>)
@@ -46,6 +45,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <b>true</b> if the SDK for specified framework is installed; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if the SDK for specified framework is installed; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/framework.get-runtime-framework().html">framework::get-runtime-framework()</a> | <a href="../functions/framework.get-target-framework().html">framework::get-target-framework()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/index.html b/doc/help/functions/index.html
index e5eda40..1c240d0 100644
--- a/doc/help/functions/index.html
+++ b/doc/help/functions/index.html
@@ -20,11 +20,10 @@
                             Function Reference
                         </td>
         <td class="NavBar-Cell" align="right">
-                            v0.92-rc1</td>
+                            v0.92</td>
       </tr>
     </table>
     <h1>Function Reference</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <a href="#Assembly">Assembly Functions</a>
     <br />
     <a href="#Conversion">Conversion Functions</a>
diff --git a/doc/help/functions/int.parse(System.String).html b/doc/help/functions/int.parse(System.String).html
index e2cfbe8..af4ed8a 100644
--- a/doc/help/functions/int.parse(System.String).html
+++ b/doc/help/functions/int.parse(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> int::parse</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>int::parse</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified string representation of a number to its 32-bit signed integer equivalent. </p>
     <h3>Usage</h3>
     <code>int int::parse(<span class="parameter">s</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A 32-bit signed integer equivalent to the number contained in <i>s</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>s</i> is not of the correct format.</li><li><i>s</i> represents a number less than <code>MinValue</code> or greater than <code>MaxValue</code>.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>s</i> is not of the correct format.</li><li><i>s</i> represents a number less than <code>MinValue</code> or greater than <code>MaxValue</code>.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/int.to-string(System.Int32).html b/doc/help/functions/int.to-string(System.Int32).html
index 3857277..c23532b 100644
--- a/doc/help/functions/int.to-string(System.Int32).html
+++ b/doc/help/functions/int.to-string(System.Int32).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> int::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>int::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemInt32ClassTopic.asp">Int32</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string int::to-string(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string representation of <i>value</i>, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string representation of <i>value</i>, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/long.parse(System.String).html b/doc/help/functions/long.parse(System.String).html
index 0a53f32..16d7ac4 100644
--- a/doc/help/functions/long.parse(System.String).html
+++ b/doc/help/functions/long.parse(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> long::parse</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>long::parse</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified string representation of a number to its 64-bit signed integer equivalent. </p>
     <h3>Usage</h3>
     <code>long long::parse(<span class="parameter">s</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A 64-bit signed integer equivalent to the number contained in <i>s</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>s</i> is not of the correct format.</li><li><i>s</i> represents a number less than <code>MinValue</code> or greater than <code>MaxValue</code>.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>s</i> is not of the correct format.</li><li><i>s</i> represents a number less than <code>MinValue</code> or greater than <code>MaxValue</code>.</li></ul></div><h3>Remarks</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture is used to supply formatting information about <i>s</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/long.to-string(System.Int64).html b/doc/help/functions/long.to-string(System.Int64).html
index f29941e..5e7c400 100644
--- a/doc/help/functions/long.to-string(System.Int64).html
+++ b/doc/help/functions/long.to-string(System.Int64).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> long::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>long::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemInt64ClassTopic.asp">Int64</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string long::to-string(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string representation of <i>value</i>, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string representation of <i>value</i>, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes. <h3>Remarks</h3><i>value</i> is formatted with the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemGlobalizationNumberFormatInfoClassTopic.asp">NumberFormatInfo</a> for the invariant culture. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/math.abs(System.Double).html b/doc/help/functions/math.abs(System.Double).html
index 43a8418..6618d9c 100644
--- a/doc/help/functions/math.abs(System.Double).html
+++ b/doc/help/functions/math.abs(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> math::abs</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>math::abs</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the absolute value of the specified number </p>
     <h3>Usage</h3>
     <code>double math::abs(<span class="parameter">value</span>)
@@ -46,6 +45,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <i>value</i> when <i>value</i> is greater than or equal to zero; otherwise, -<i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <i>value</i> when <i>value</i> is greater than or equal to zero; otherwise, -<i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/math.ceiling(System.Double).html b/doc/help/functions/math.ceiling(System.Double).html
index 32a8d0d..ab3ce3f 100644
--- a/doc/help/functions/math.ceiling(System.Double).html
+++ b/doc/help/functions/math.ceiling(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> math::ceiling</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>math::ceiling</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the smallest whole number greater than or equal to the specified number </p>
     <h3>Usage</h3>
     <code>double math::ceiling(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The smallest whole number greater than or equal to the specified number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The smallest whole number greater than or equal to the specified number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/math.floor(System.Double).html b/doc/help/functions/math.floor(System.Double).html
index 3418091..02f7a6f 100644
--- a/doc/help/functions/math.floor(System.Double).html
+++ b/doc/help/functions/math.floor(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> math::floor</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>math::floor</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the largest whole number less than or equal to the specified number. </p>
     <h3>Usage</h3>
     <code>double math::floor(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The largest whole number less than or equal to the specified number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The largest whole number less than or equal to the specified number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/math.round(System.Double).html b/doc/help/functions/math.round(System.Double).html
index 03d82dc..1865316 100644
--- a/doc/help/functions/math.round(System.Double).html
+++ b/doc/help/functions/math.round(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> math::round</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>math::round</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Rounds the value to the nearest whole number </p>
     <h3>Usage</h3>
     <code>double math::round(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> Rounded value. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> Rounded value. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/nant.get-assembly().html b/doc/help/functions/nant.get-assembly().html
index ecbf5c0..56335fc 100644
--- a/doc/help/functions/nant.get-assembly().html
+++ b/doc/help/functions/nant.get-assembly().html
@@ -20,17 +20,16 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> nant::get-assembly</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>nant::get-assembly</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the NAnt assembly. </p>
     <h3>Usage</h3>
     <code>
       <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyClassTopic.asp">Assembly</a> nant::get-assembly()
             </code>
     <p />
-    <h3>Return Value</h3> The NAnt assembly. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The NAnt assembly. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/nant.get-base-directory().html b/doc/help/functions/nant.get-base-directory().html
index 6b9f0c9..4ac674d 100644
--- a/doc/help/functions/nant.get-base-directory().html
+++ b/doc/help/functions/nant.get-base-directory().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> nant::get-base-directory</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>nant::get-base-directory</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the base directory of the appdomain in which NAnt is running. </p>
     <h3>Usage</h3>
     <code>string nant::get-base-directory()
             </code>
     <p />
-    <h3>Return Value</h3> The base directory of the appdomain in which NAnt is running. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The base directory of the appdomain in which NAnt is running. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/operating-system.get-platform(System.OperatingSystem).html b/doc/help/functions/operating-system.get-platform(System.OperatingSystem).html
index ba70555..ba8df24 100644
--- a/doc/help/functions/operating-system.get-platform(System.OperatingSystem).html
+++ b/doc/help/functions/operating-system.get-platform(System.OperatingSystem).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> operating-system::get-platform</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>operating-system::get-platform</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemPlatformIDClassTopic.asp">PlatformID</a> value that identifies the operating system platform. </p>
     <h3>Usage</h3>
     <code>
@@ -49,6 +48,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemPlatformIDClassTopic.asp">PlatformID</a> value that identifies the operating system platform. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemPlatformIDClassTopic.asp">PlatformID</a> value that identifies the operating system platform. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/environment.get-operating-system().html">environment::get-operating-system()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/operating-system.get-version(System.OperatingSystem).html b/doc/help/functions/operating-system.get-version(System.OperatingSystem).html
index 05f4d0a..78d6bc0 100644
--- a/doc/help/functions/operating-system.get-version(System.OperatingSystem).html
+++ b/doc/help/functions/operating-system.get-version(System.OperatingSystem).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> operating-system::get-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>operating-system::get-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> object that identifies this operating system. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> object that describes the major version, minor version, build, and revision of the operating system. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> object that describes the major version, minor version, build, and revision of the operating system. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/environment.get-operating-system().html">environment::get-operating-system()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/operating-system.to-string(System.OperatingSystem).html b/doc/help/functions/operating-system.to-string(System.OperatingSystem).html
index 5a394b1..998971f 100644
--- a/doc/help/functions/operating-system.to-string(System.OperatingSystem).html
+++ b/doc/help/functions/operating-system.to-string(System.OperatingSystem).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> operating-system::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>operating-system::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the value of the specified operating system to its equivalent <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> representation. </p>
     <h3>Usage</h3>
     <code>string operating-system::to-string(<span class="parameter">operatingSystem</span>)
@@ -50,6 +49,6 @@
     <h3>Return Value</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> representation of <i>operatingSystem</i>. <h3>Examples</h3><ul class="examples"><li><p> Output string representation of the current operating system. </p><pre class="code">
 &lt;echo message="OS=${operating-system::to-string(environment::get-operating-system())}" /&gt;
     </pre><p>If the operating system is Windows 2000, the output is:</p><pre class="code">Microsoft Windows NT 5.0.2195.0
-  </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+  </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/environment.get-operating-system().html">environment::get-operating-system()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.change-extension(System.String,System.String).html b/doc/help/functions/path.change-extension(System.String,System.String).html
index c5f85be..234c9f6 100644
--- a/doc/help/functions/path.change-extension(System.String,System.String).html
+++ b/doc/help/functions/path.change-extension(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::change-extension</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::change-extension</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Changes the extension of the path string. </p>
     <h3>Usage</h3>
     <code>string path::change-extension(<span class="parameter">path</span>, <span class="parameter">extension</span>)
@@ -55,6 +54,6 @@
     <p> On Windows-based desktop platforms, if <i>path</i> is an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>, the path information is returned unmodified. If <i>path</i> has no extension, the returned path <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> contains <i>extension</i> appended to the end of <i>path</i>. </p>
     <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Remarks</h3> For more information see the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemIOPathClassTopic.asp">Path</a> documentation. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Remarks</h3> For more information see the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemIOPathClassTopic.asp">Path</a> documentation. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.combine(System.String,System.String).html b/doc/help/functions/path.combine(System.String,System.String).html
index ade81ff..1d7d3d5 100644
--- a/doc/help/functions/path.combine(System.String,System.String).html
+++ b/doc/help/functions/path.combine(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::combine</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::combine</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Combines two paths. </p>
     <h3>Usage</h3>
     <code>string path::combine(<span class="parameter">path1</span>, <span class="parameter">path2</span>)
@@ -52,6 +51,6 @@
     </div>
     <h3>Return Value</h3> A string containing the combined paths. If one of the specified paths is a zero-length string, this method returns the other path. If <i>path2</i> contains an absolute path, this method returns <i>path2</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path1</i> or <i>path2</i> contain one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path1</i> or <i>path2</i> contain one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-directory-name(System.String).html b/doc/help/functions/path.get-directory-name(System.String).html
index 5b66aad..c383c57 100644
--- a/doc/help/functions/path.get-directory-name(System.String).html
+++ b/doc/help/functions/path.get-directory-name(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-directory-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-directory-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the directory information for the specified path string. </p>
     <h3>Usage</h3>
     <code>string path::get-directory-name(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing directory information for <i>path</i>, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if <i>path</i> denotes a root directory, or does not contain directory information. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains invalid characters, is empty, or contains only white spaces.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains invalid characters, is empty, or contains only white spaces.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-extension(System.String).html b/doc/help/functions/path.get-extension(System.String).html
index 2eabab1..b89abe5 100644
--- a/doc/help/functions/path.get-extension(System.String).html
+++ b/doc/help/functions/path.get-extension(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-extension</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-extension</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the extension for the specified path string. </p>
     <h3>Usage</h3>
     <code>string path::get-extension(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the extension of the specified <i>path</i> (including the "."), or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if <i>path</i> does not have extension information. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-file-name(System.String).html b/doc/help/functions/path.get-file-name(System.String).html
index 0cc0932..9ab0778 100644
--- a/doc/help/functions/path.get-file-name(System.String).html
+++ b/doc/help/functions/path.get-file-name(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-file-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-file-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the filename for the specified path string. </p>
     <h3>Usage</h3>
     <code>string path::get-file-name(<span class="parameter">path</span>)
@@ -50,6 +49,6 @@
     <p> If the last character of <i>path</i> is a directory or volume separator character, an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> is returned. </p>
     <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-file-name-without-extension(System.String).html b/doc/help/functions/path.get-file-name-without-extension(System.String).html
index d7e9b7b..f7f4307 100644
--- a/doc/help/functions/path.get-file-name-without-extension(System.String).html
+++ b/doc/help/functions/path.get-file-name-without-extension(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-file-name-without-extension</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-file-name-without-extension</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the filename without extension for the specified path string. </p>
     <h3>Usage</h3>
     <code>string path::get-file-name-without-extension(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> returned by <a href="../functions/path.get-file-name(System.String).html">path::get-file-name()</a>, minus the last period (.) and all characters following it. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-full-path(System.String).html b/doc/help/functions/path.get-full-path(System.String).html
index 1dce254..a4bbb16 100644
--- a/doc/help/functions/path.get-full-path(System.String).html
+++ b/doc/help/functions/path.get-full-path(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-full-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-full-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the fully qualified path. </p>
     <h3>Usage</h3>
     <code>string path::get-full-path(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A string containing the fully qualified location of <i>path</i>, such as "C:\MyFile.txt". <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li><i>path</i> contains a colon (":").</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> is a zero-length string, contains only white space, or contains one or more invalid characters.</li><li><i>path</i> contains a colon (":").</li><li>The specified path, file name, or both exceed the system-defined maximum length.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-path-root(System.String).html b/doc/help/functions/path.get-path-root(System.String).html
index 1a2ac14..1ce87c2 100644
--- a/doc/help/functions/path.get-path-root(System.String).html
+++ b/doc/help/functions/path.get-path-root(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-path-root</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-path-root</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the root directory of the specified path. </p>
     <h3>Usage</h3>
     <code>string path::get-path-root(<span class="parameter">path</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the root directory of <i>path</i>, such as "C:\", or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if <i>path</i> does not contain root directory information. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains invalid characters, or is empty.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains invalid characters, or is empty.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-temp-file-name().html b/doc/help/functions/path.get-temp-file-name().html
index 57c5fcf..6586068 100644
--- a/doc/help/functions/path.get-temp-file-name().html
+++ b/doc/help/functions/path.get-temp-file-name().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-temp-file-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-temp-file-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a uniquely named zero-byte temporary file on disk and returns the full path to that file. </p>
     <h3>Usage</h3>
     <code>string path::get-temp-file-name()
             </code>
     <p />
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the name of the temporary file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the name of the temporary file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.get-temp-path().html b/doc/help/functions/path.get-temp-path().html
index 2631462..3bab0ce 100644
--- a/doc/help/functions/path.get-temp-path().html
+++ b/doc/help/functions/path.get-temp-path().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::get-temp-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::get-temp-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the path to the temporary directory. </p>
     <h3>Usage</h3>
     <code>string path::get-temp-path()
             </code>
     <p />
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the path information of a temporary directory. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> containing the path information of a temporary directory. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.has-extension(System.String).html b/doc/help/functions/path.has-extension(System.String).html
index 8270c63..ef534be 100644
--- a/doc/help/functions/path.has-extension(System.String).html
+++ b/doc/help/functions/path.has-extension(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::has-extension</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::has-extension</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether a path string includes an extension. </p>
     <h3>Usage</h3>
     <code>bool path::has-extension(<span class="parameter">path</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b>. if the characters that follow the last directory separator or volume separator in the <i>path</i> include a period (.) followed by one or more characters; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/path.is-path-rooted(System.String).html b/doc/help/functions/path.is-path-rooted(System.String).html
index c27b29e..084a9ac 100644
--- a/doc/help/functions/path.is-path-rooted(System.String).html
+++ b/doc/help/functions/path.is-path-rooted(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> path::is-path-rooted</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>path::is-path-rooted</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether a path string is absolute. </p>
     <h3>Usage</h3>
     <code>bool path::is-path-rooted(<span class="parameter">path</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b> if path contains an absolute <i>path</i>; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>path</i> contains one or more invalid characters.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.exists(System.String).html b/doc/help/functions/pkg-config.exists(System.String).html
index 855f520..6e106f8 100644
--- a/doc/help/functions/pkg-config.exists(System.String).html
+++ b/doc/help/functions/pkg-config.exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether the given package exists. </p>
     <h3>Usage</h3>
     <code>bool pkg-config::exists(<span class="parameter">package</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the package exists; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.get-compile-flags(System.String).html b/doc/help/functions/pkg-config.get-compile-flags(System.String).html
index 7ce63ee..5f19df1 100644
--- a/doc/help/functions/pkg-config.get-compile-flags(System.String).html
+++ b/doc/help/functions/pkg-config.get-compile-flags(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::get-compile-flags</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::get-compile-flags</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the compile flags required to compile the package, including all its dependencies. </p>
     <h3>Usage</h3>
     <code>string pkg-config::get-compile-flags(<span class="parameter">package</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The pre-processor and compile flags required to compile the package. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.get-link-flags(System.String).html b/doc/help/functions/pkg-config.get-link-flags(System.String).html
index 69089c3..ee37eee 100644
--- a/doc/help/functions/pkg-config.get-link-flags(System.String).html
+++ b/doc/help/functions/pkg-config.get-link-flags(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::get-link-flags</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::get-link-flags</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the link flags required to compile the package, including all its dependencies. </p>
     <h3>Usage</h3>
     <code>string pkg-config::get-link-flags(<span class="parameter">package</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The link flags required to compile the package. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.get-mod-version(System.String).html b/doc/help/functions/pkg-config.get-mod-version(System.String).html
index ccceaa2..5dd24b3 100644
--- a/doc/help/functions/pkg-config.get-mod-version(System.String).html
+++ b/doc/help/functions/pkg-config.get-mod-version(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::get-mod-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::get-mod-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines the version of the given package. </p>
     <h3>Usage</h3>
     <code>string pkg-config::get-mod-version(<span class="parameter">package</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> The version of the given package. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.get-variable(System.String,System.String).html b/doc/help/functions/pkg-config.get-variable(System.String,System.String).html
index 56393fd..5601df1 100644
--- a/doc/help/functions/pkg-config.get-variable(System.String,System.String).html
+++ b/doc/help/functions/pkg-config.get-variable(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::get-variable</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::get-variable</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the value of a variable for the specified package. </p>
     <h3>Usage</h3>
     <code>string pkg-config::get-variable(<span class="parameter">package</span>, <span class="parameter">name</span>)
@@ -52,6 +51,6 @@
     </div>
     <h3>Return Value</h3> The value of variable <i>name</i> for the specified package. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li><li><i>package</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.is-atleast-version(System.String,System.String).html b/doc/help/functions/pkg-config.is-atleast-version(System.String,System.String).html
index 7d4ffdf..a9c372f 100644
--- a/doc/help/functions/pkg-config.is-atleast-version(System.String,System.String).html
+++ b/doc/help/functions/pkg-config.is-atleast-version(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::is-atleast-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::is-atleast-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether the given package is at least version <i>version</i>. </p>
     <h3>Usage</h3>
     <code>bool pkg-config::is-atleast-version(<span class="parameter">package</span>, <span class="parameter">version</span>)
@@ -53,6 +52,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the given package is at least version <i>version</i>; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.is-between-version(System.String,System.String,System.String).html b/doc/help/functions/pkg-config.is-between-version(System.String,System.String,System.String).html
index aea3e9b..2635a07 100644
--- a/doc/help/functions/pkg-config.is-between-version(System.String,System.String,System.String).html
+++ b/doc/help/functions/pkg-config.is-between-version(System.String,System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::is-between-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::is-between-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether the given package is between two versions. </p>
     <h3>Usage</h3>
     <code>bool pkg-config::is-between-version(<span class="parameter">package</span>, <span class="parameter">minVersion</span>, <span class="parameter">maxVersion</span>)
@@ -58,6 +57,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the given package is between <i>minVersion</i> and <i>maxVersion</i>; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.is-exact-version(System.String,System.String).html b/doc/help/functions/pkg-config.is-exact-version(System.String,System.String).html
index 57477cf..1c15fd7 100644
--- a/doc/help/functions/pkg-config.is-exact-version(System.String,System.String).html
+++ b/doc/help/functions/pkg-config.is-exact-version(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::is-exact-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::is-exact-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether the given package is exactly version <i>version</i>. </p>
     <h3>Usage</h3>
     <code>bool pkg-config::is-exact-version(<span class="parameter">package</span>, <span class="parameter">version</span>)
@@ -53,6 +52,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the given package is exactly version <i>version</i>; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/pkg-config.is-max-version(System.String,System.String).html b/doc/help/functions/pkg-config.is-max-version(System.String,System.String).html
index 6bb6f20..0af9c66 100644
--- a/doc/help/functions/pkg-config.is-max-version(System.String,System.String).html
+++ b/doc/help/functions/pkg-config.is-max-version(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> pkg-config::is-max-version</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>pkg-config::is-max-version</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Determines whether the given package is at no newer than version <i>version</i>. </p>
     <h3>Usage</h3>
     <code>bool pkg-config::is-max-version(<span class="parameter">package</span>, <span class="parameter">version</span>)
@@ -53,6 +52,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the given package is at no newer than version <i>version</i>; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><code>pkg-config</code> could not be started.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/platform.get-name().html b/doc/help/functions/platform.get-name().html
index 1925cf9..f6a9c3b 100644
--- a/doc/help/functions/platform.get-name().html
+++ b/doc/help/functions/platform.get-name().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> platform::get-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>platform::get-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the name of the platform on which NAnt is running. </p>
     <h3>Usage</h3>
     <code>string platform::get-name()
             </code>
     <p />
-    <h3>Return Value</h3> The name of the platform on which NAnt is running. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The name of the platform on which NAnt is running. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/platform.is-unix().html b/doc/help/functions/platform.is-unix().html
index 4e375af..58bf81a 100644
--- a/doc/help/functions/platform.is-unix().html
+++ b/doc/help/functions/platform.is-unix().html
@@ -20,17 +20,16 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> platform::is-unix</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>platform::is-unix</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether NAnt is running on Unix. </p>
     <h3>Usage</h3>
     <code>bool platform::is-unix()
             </code>
     <p />
     <h3>Return Value</h3>
-    <b>true</b> if NAnt is running on Unix; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if NAnt is running on Unix; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/platform.is-win32().html b/doc/help/functions/platform.is-win32().html
index 7c22b19..df80764 100644
--- a/doc/help/functions/platform.is-win32().html
+++ b/doc/help/functions/platform.is-win32().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> platform::is-win32</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>platform::is-win32</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -34,6 +33,6 @@
             </code>
     <p />
     <h3>Return Value</h3>
-    <b>true</b> if NAnt is running on Windows; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if NAnt is running on Windows; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/platform.is-windows().html b/doc/help/functions/platform.is-windows().html
index 850234a..b809f63 100644
--- a/doc/help/functions/platform.is-windows().html
+++ b/doc/help/functions/platform.is-windows().html
@@ -20,17 +20,16 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> platform::is-windows</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>platform::is-windows</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether NAnt is running on Windows. </p>
     <h3>Usage</h3>
     <code>bool platform::is-windows()
             </code>
     <p />
     <h3>Return Value</h3>
-    <b>true</b> if NAnt is running on Windows; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if NAnt is running on Windows; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/project.get-base-directory().html b/doc/help/functions/project.get-base-directory().html
index 9a28098..28bc71a 100644
--- a/doc/help/functions/project.get-base-directory().html
+++ b/doc/help/functions/project.get-base-directory().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> project::get-base-directory</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>project::get-base-directory</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the base directory of the current project. </p>
     <h3>Usage</h3>
     <code>string project::get-base-directory()
             </code>
     <p />
-    <h3>Return Value</h3> The base directory of the current project. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The base directory of the current project. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/project.get-buildfile-path().html b/doc/help/functions/project.get-buildfile-path().html
index 08731f3..deadb8a 100644
--- a/doc/help/functions/project.get-buildfile-path().html
+++ b/doc/help/functions/project.get-buildfile-path().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> project::get-buildfile-path</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>project::get-buildfile-path</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the local path to the build file. </p>
     <h3>Usage</h3>
     <code>string project::get-buildfile-path()
             </code>
     <p />
-    <h3>Return Value</h3> The local path of the build file, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if the project is not file backed. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The local path of the build file, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if the project is not file backed. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/project.get-buildfile-uri().html b/doc/help/functions/project.get-buildfile-uri().html
index 30d0cf5..6b39838 100644
--- a/doc/help/functions/project.get-buildfile-uri().html
+++ b/doc/help/functions/project.get-buildfile-uri().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> project::get-buildfile-uri</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>project::get-buildfile-uri</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemUriClassTopic.asp">Uri</a> form of the build file. </p>
     <h3>Usage</h3>
     <code>string project::get-buildfile-uri()
             </code>
     <p />
-    <h3>Return Value</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemUriClassTopic.asp">Uri</a> form of the build file, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if the project is not file backed. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemUriClassTopic.asp">Uri</a> form of the build file, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if the project is not file backed. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/project.get-default-target().html b/doc/help/functions/project.get-default-target().html
index dc5b33a..204788a 100644
--- a/doc/help/functions/project.get-default-target().html
+++ b/doc/help/functions/project.get-default-target().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> project::get-default-target</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>project::get-default-target</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the name of the target that will be executed when no other build targets are specified. </p>
     <h3>Usage</h3>
     <code>string project::get-default-target()
             </code>
     <p />
-    <h3>Return Value</h3> The name of the target that will be executed when no other build targets are specified, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if no default target is defined for the project. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The name of the target that will be executed when no other build targets are specified, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if no default target is defined for the project. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/project.get-name().html b/doc/help/functions/project.get-name().html
index b540d73..cb59df8 100644
--- a/doc/help/functions/project.get-name().html
+++ b/doc/help/functions/project.get-name().html
@@ -20,16 +20,15 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> project::get-name</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>project::get-name</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the name of the current project. </p>
     <h3>Usage</h3>
     <code>string project::get-name()
             </code>
     <p />
-    <h3>Return Value</h3> The name of the current project, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if no name is specified in the build file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The name of the current project, or an empty <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> if no name is specified in the build file. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/property.exists(System.String).html b/doc/help/functions/property.exists(System.String).html
index 3425d1e..82cebf8 100644
--- a/doc/help/functions/property.exists(System.String).html
+++ b/doc/help/functions/property.exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> property::exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>property::exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the specified property exists. </p>
     <h3>Usage</h3>
     <code>bool property::exists(<span class="parameter">name</span>)
@@ -52,6 +51,6 @@
     &lt;call target="init-debug" /&gt;
     &lt;call target="build" /&gt;
 &lt;/if&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/property.get-value(System.String).html b/doc/help/functions/property.get-value(System.String).html
index 0ce9dc0..1bdc646 100644
--- a/doc/help/functions/property.get-value(System.String).html
+++ b/doc/help/functions/property.get-value(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> property::get-value</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>property::get-value</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the value of the specified property. </p>
     <h3>Usage</h3>
     <code>string property::get-value(<span class="parameter">propertyName</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The value of the specified property. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The value of the specified property. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/property.is-dynamic(System.String).html b/doc/help/functions/property.is-dynamic(System.String).html
index 428a2a7..8fbd296 100644
--- a/doc/help/functions/property.is-dynamic(System.String).html
+++ b/doc/help/functions/property.is-dynamic(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> property::is-dynamic</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>property::is-dynamic</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the specified property is a dynamic property. </p>
     <h3>Usage</h3>
     <code>bool property::is-dynamic(<span class="parameter">name</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the specified property is a dynamic property; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>Property <i>name</i> has not been set.</li></ul></div><h3>Examples</h3><ul class="examples"><li><p> Check whether the "debug" property is a dynamic property. </p><pre class="code">property::is-dynamic('debug')</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>Property <i>name</i> has not been set.</li></ul></div><h3>Examples</h3><ul class="examples"><li><p> Check whether the "debug" property is a dynamic property. </p><pre class="code">property::is-dynamic('debug')</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/property.is-readonly(System.String).html b/doc/help/functions/property.is-readonly(System.String).html
index 97aced0..37c3b86 100644
--- a/doc/help/functions/property.is-readonly(System.String).html
+++ b/doc/help/functions/property.is-readonly(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> property::is-readonly</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>property::is-readonly</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the specified property is read-only. </p>
     <h3>Usage</h3>
     <code>bool property::is-readonly(<span class="parameter">name</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the specified property is read-only; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>Property <i>name</i> has not been set.</li></ul></div><h3>Examples</h3><ul class="examples"><li><p>Check whether the "debug" property is read-only.</p><pre class="code">property::is-readonly('debug')</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>Property <i>name</i> has not been set.</li></ul></div><h3>Examples</h3><ul class="examples"><li><p>Check whether the "debug" property is read-only.</p><pre class="code">property::is-readonly('debug')</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.contains(System.String,System.String).html b/doc/help/functions/string.contains(System.String,System.String).html
index 40fa16f..af430cc 100644
--- a/doc/help/functions/string.contains(System.String,System.String).html
+++ b/doc/help/functions/string.contains(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::contains</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::contains</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Tests whether the specified string contains the given search string. </p>
     <h3>Usage</h3>
     <code>bool string::contains(<span class="parameter">source</span>, <span class="parameter">value</span>)
@@ -51,6 +50,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <b>true</b> if <i>value</i> is found in <i>source</i>; otherwise, <b>false</b>. <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::contains('testing string', 'test') ==&gt; true</pre></li><li><pre class="code">string::contains('testing string', '') ==&gt; true</pre></li><li><pre class="code">string::contains('testing string', 'Test') ==&gt; false</pre></li><li><pre class="code">string::contains('testing string', 'foo') ==&gt; false</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if <i>value</i> is found in <i>source</i>; otherwise, <b>false</b>. <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::contains('testing string', 'test') ==&gt; true</pre></li><li><pre class="code">string::contains('testing string', '') ==&gt; true</pre></li><li><pre class="code">string::contains('testing string', 'Test') ==&gt; false</pre></li><li><pre class="code">string::contains('testing string', 'foo') ==&gt; false</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.ends-with(System.String,System.String).html b/doc/help/functions/string.ends-with(System.String,System.String).html
index 6324192..d6d45b9 100644
--- a/doc/help/functions/string.ends-with(System.String,System.String).html
+++ b/doc/help/functions/string.ends-with(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::ends-with</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::ends-with</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Tests whether the specified string ends with the specified suffix string. </p>
     <h3>Usage</h3>
     <code>bool string::ends-with(<span class="parameter">s1</span>, <span class="parameter">s2</span>)
@@ -51,6 +50,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <b>true</b> when <i>s2</i> is a suffix for the string <i>s1</i>. Meaning, the characters at the end of <i>s1</i> are identical to <i>s2</i>; otherwise, <b>false</b>. <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::ends-with('testing string', 'string') ==&gt; true</pre></li><li><pre class="code">string::ends-with('testing string', '') ==&gt; true</pre></li><li><pre class="code">string::ends-with('testing string', 'bring') ==&gt; false</pre></li><li><pre class="code">string::ends-with('string', 'testing string') ==&gt; false</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> when <i>s2</i> is a suffix for the string <i>s1</i>. Meaning, the characters at the end of <i>s1</i> are identical to <i>s2</i>; otherwise, <b>false</b>. <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::ends-with('testing string', 'string') ==&gt; true</pre></li><li><pre class="code">string::ends-with('testing string', '') ==&gt; true</pre></li><li><pre class="code">string::ends-with('testing string', 'bring') ==&gt; false</pre></li><li><pre class="code">string::ends-with('string', 'testing string') ==&gt; false</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.get-length(System.String).html b/doc/help/functions/string.get-length(System.String).html
index ac76d57..eb2341e 100644
--- a/doc/help/functions/string.get-length(System.String).html
+++ b/doc/help/functions/string.get-length(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::get-length</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::get-length</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the length of the specified string. </p>
     <h3>Usage</h3>
     <code>int string::get-length(<span class="parameter">s</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string's length. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::get-length('foo') ==&gt; 3</pre></li><li><pre class="code">string::get-length('') ==&gt; 0</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string's length. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::get-length('foo') ==&gt; 3</pre></li><li><pre class="code">string::get-length('') ==&gt; 0</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.index-of(System.String,System.String).html b/doc/help/functions/string.index-of(System.String,System.String).html
index 7422d05..9d504cd 100644
--- a/doc/help/functions/string.index-of(System.String,System.String).html
+++ b/doc/help/functions/string.index-of(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::index-of</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::index-of</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the position of the first occurrence in the specified string of the given search string. </p>
     <h3>Usage</h3>
     <code>int string::index-of(<span class="parameter">source</span>, <span class="parameter">value</span>)
@@ -53,6 +52,6 @@
     <h3>Return Value</h3>
     <p> The lowest-index position of <i>value</i> in <i>source</i> if it is found, or -1 if <i>source</i> does not contain <i>value</i>. </p>
     <p> If <i>value</i> is an empty string, the return value will always be <code>0</code>. </p>
-    <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::index-of('testing string', 'test') ==&gt; 0</pre></li><li><pre class="code">string::index-of('testing string', '') ==&gt; 0</pre></li><li><pre class="code">string::index-of('testing string', 'Test') ==&gt; -1</pre></li><li><pre class="code">string::index-of('testing string', 'ing') ==&gt; 4</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::index-of('testing string', 'test') ==&gt; 0</pre></li><li><pre class="code">string::index-of('testing string', '') ==&gt; 0</pre></li><li><pre class="code">string::index-of('testing string', 'Test') ==&gt; -1</pre></li><li><pre class="code">string::index-of('testing string', 'ing') ==&gt; 4</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.last-index-of(System.String,System.String).html b/doc/help/functions/string.last-index-of(System.String,System.String).html
index f142623..a90fad7 100644
--- a/doc/help/functions/string.last-index-of(System.String,System.String).html
+++ b/doc/help/functions/string.last-index-of(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::last-index-of</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::last-index-of</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the position of the last occurrence in the specified string of the given search string. </p>
     <h3>Usage</h3>
     <code>int string::last-index-of(<span class="parameter">source</span>, <span class="parameter">value</span>)
@@ -53,6 +52,6 @@
     <h3>Return Value</h3>
     <p> The highest-index position of <i>value</i> in <i>source</i> if it is found, or -1 if <i>source</i> does not contain <i>value</i>. </p>
     <p> If <i>value</i> is an empty string, the return value is the last index position in <i>source</i>. </p>
-    <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::last-index-of('testing string', 'test') ==&gt; 0</pre></li><li><pre class="code">string::last-index-of('testing string', '') ==&gt; 13</pre></li><li><pre class="code">string::last-index-of('testing string', 'Test') ==&gt; -1</pre></li><li><pre class="code">string::last-index-of('testing string', 'ing') ==&gt; 11</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::last-index-of('testing string', 'test') ==&gt; 0</pre></li><li><pre class="code">string::last-index-of('testing string', '') ==&gt; 13</pre></li><li><pre class="code">string::last-index-of('testing string', 'Test') ==&gt; -1</pre></li><li><pre class="code">string::last-index-of('testing string', 'ing') ==&gt; 11</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.pad-left(System.String,System.Int32,System.String).html b/doc/help/functions/string.pad-left(System.String,System.Int32,System.String).html
index 9988c1d..4bfbbb9 100644
--- a/doc/help/functions/string.pad-left(System.String,System.Int32,System.String).html
+++ b/doc/help/functions/string.pad-left(System.String,System.Int32,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::pad-left</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::pad-left</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the given string left-padded to the given length. </p>
     <h3>Usage</h3>
     <code>string string::pad-left(<span class="parameter">s</span>, <span class="parameter">totalWidth</span>, <span class="parameter">paddingChar</span>)
@@ -57,6 +56,6 @@
     </div>
     <h3>Return Value</h3> If the length of <i>s</i> is at least <i>totalWidth</i>, then a new <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> identical to <i>s</i> is returned. Otherwise, <i>s</i> will be padded on the left with as many <i>paddingChar</i> characters as needed to create a length of <i>totalWidth</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>totalWidth</i> is less than zero.</li></ul></div><h3>Remarks</h3> Note that only the first character of <i>paddingChar</i> will be used when padding the result. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::pad-left('test', 10, ' ') ==&gt; '      test'</pre></li><li><pre class="code">string::pad-left('test', 10, 'test') ==&gt; 'tttttttest'</pre></li><li><pre class="code">string::pad-left('test', 3, ' ') ==&gt; 'test'</pre></li><li><pre class="code">string::pad-left('test', -4, ' ') ==&gt; ERROR</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>totalWidth</i> is less than zero.</li></ul></div><h3>Remarks</h3> Note that only the first character of <i>paddingChar</i> will be used when padding the result. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::pad-left('test', 10, ' ') ==&gt; '      test'</pre></li><li><pre class="code">string::pad-left('test', 10, 'test') ==&gt; 'tttttttest'</pre></li><li><pre class="code">string::pad-left('test', 3, ' ') ==&gt; 'test'</pre></li><li><pre class="code">string::pad-left('test', -4, ' ') ==&gt; ERROR</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.pad-right(System.String,System.Int32,System.String).html b/doc/help/functions/string.pad-right(System.String,System.Int32,System.String).html
index abf62a8..6b20d91 100644
--- a/doc/help/functions/string.pad-right(System.String,System.Int32,System.String).html
+++ b/doc/help/functions/string.pad-right(System.String,System.Int32,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::pad-right</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::pad-right</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the given string right-padded to the given length. </p>
     <h3>Usage</h3>
     <code>string string::pad-right(<span class="parameter">s</span>, <span class="parameter">totalWidth</span>, <span class="parameter">paddingChar</span>)
@@ -57,6 +56,6 @@
     </div>
     <h3>Return Value</h3> If the length of <i>s</i> is at least <i>totalWidth</i>, then a new <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> identical to <i>s</i> is returned. Otherwise, <i>s</i> will be padded on the right with as many <i>paddingChar</i> characters as needed to create a length of <i>totalWidth</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>totalWidth</i> is less than zero.</li></ul></div><h3>Remarks</h3> Note that only the first character of <i>paddingChar</i> will be used when padding the result. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::pad-right('test', 10, ' ') ==&gt; 'test      '</pre></li><li><pre class="code">string::pad-right('test', 10, 'abcd') ==&gt; 'testaaaaaa'</pre></li><li><pre class="code">string::pad-right('test', 3, ' ') ==&gt; 'test'</pre></li><li><pre class="code">string::pad-right('test', -3, ' ') ==&gt; ERROR</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>totalWidth</i> is less than zero.</li></ul></div><h3>Remarks</h3> Note that only the first character of <i>paddingChar</i> will be used when padding the result. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::pad-right('test', 10, ' ') ==&gt; 'test      '</pre></li><li><pre class="code">string::pad-right('test', 10, 'abcd') ==&gt; 'testaaaaaa'</pre></li><li><pre class="code">string::pad-right('test', 3, ' ') ==&gt; 'test'</pre></li><li><pre class="code">string::pad-right('test', -3, ' ') ==&gt; ERROR</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.replace(System.String,System.String,System.String).html b/doc/help/functions/string.replace(System.String,System.String,System.String).html
index 7fffe85..419fbe7 100644
--- a/doc/help/functions/string.replace(System.String,System.String,System.String).html
+++ b/doc/help/functions/string.replace(System.String,System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::replace</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::replace</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a string corresponding to the replacement of a given string with another in the specified string. </p>
     <h3>Usage</h3>
     <code>string string::replace(<span class="parameter">str</span>, <span class="parameter">oldValue</span>, <span class="parameter">newValue</span>)
@@ -57,6 +56,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> equivalent to <i>str</i> but with all instances of <i>oldValue</i> replaced with <i>newValue</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>oldValue</i> is an empty string.</li></ul></div><h3>Remarks</h3> This function performs a word (case-sensitive and culture-sensitive) search to find <i>oldValue</i>. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::replace('testing string', 'test', 'winn') ==&gt; 'winning string'</pre></li><li><pre class="code">string::replace('testing string', 'foo', 'winn') ==&gt; 'testing string'</pre></li><li><pre class="code">string::replace('testing string', 'ing', '') ==&gt; 'test str'</pre></li><li><pre class="code">string::replace('banana', 'ana', 'ana') ==&gt; 'banana'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>oldValue</i> is an empty string.</li></ul></div><h3>Remarks</h3> This function performs a word (case-sensitive and culture-sensitive) search to find <i>oldValue</i>. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::replace('testing string', 'test', 'winn') ==&gt; 'winning string'</pre></li><li><pre class="code">string::replace('testing string', 'foo', 'winn') ==&gt; 'testing string'</pre></li><li><pre class="code">string::replace('testing string', 'ing', '') ==&gt; 'test str'</pre></li><li><pre class="code">string::replace('banana', 'ana', 'ana') ==&gt; 'banana'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.starts-with(System.String,System.String).html b/doc/help/functions/string.starts-with(System.String,System.String).html
index cefb359..ea5ba12 100644
--- a/doc/help/functions/string.starts-with(System.String,System.String).html
+++ b/doc/help/functions/string.starts-with(System.String,System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::starts-with</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::starts-with</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Tests whether the specified string starts with the specified prefix string. </p>
     <h3>Usage</h3>
     <code>bool string::starts-with(<span class="parameter">s1</span>, <span class="parameter">s2</span>)
@@ -51,6 +50,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <b>true</b> when <i>s2</i> is a prefix for the string <i>s1</i>. Meaning, the characters at the beginning of <i>s1</i> are identical to <i>s2</i>; otherwise, <b>false</b>. <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::starts-with('testing string', 'test') ==&gt; true</pre></li><li><pre class="code">string::starts-with('testing string', 'testing') ==&gt; true</pre></li><li><pre class="code">string::starts-with('testing string', 'string') ==&gt; false</pre></li><li><pre class="code">string::starts-with('test', 'testing string') ==&gt; false</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> when <i>s2</i> is a prefix for the string <i>s1</i>. Meaning, the characters at the beginning of <i>s1</i> are identical to <i>s2</i>; otherwise, <b>false</b>. <h3>Remarks</h3> This function performs a case-sensitive word search using the invariant culture. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::starts-with('testing string', 'test') ==&gt; true</pre></li><li><pre class="code">string::starts-with('testing string', 'testing') ==&gt; true</pre></li><li><pre class="code">string::starts-with('testing string', 'string') ==&gt; false</pre></li><li><pre class="code">string::starts-with('test', 'testing string') ==&gt; false</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.substring(System.String,System.Int32,System.Int32).html b/doc/help/functions/string.substring(System.String,System.Int32,System.Int32).html
index 4b1149e..59799b8 100644
--- a/doc/help/functions/string.substring(System.String,System.Int32,System.Int32).html
+++ b/doc/help/functions/string.substring(System.String,System.Int32,System.Int32).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::substring</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::substring</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a substring of the specified string. </p>
     <h3>Usage</h3>
     <code>string string::substring(<span class="parameter">str</span>, <span class="parameter">startIndex</span>, <span class="parameter">length</span>)
@@ -60,6 +59,6 @@
     <p> If the <i>length</i> is equal to zero, the function returns an empty string. </p>
     <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>startIndex</i> or <i>length</i> is less than zero.</li><li><i>startIndex</i> is greater than the length of <i>str</i>.</li><li><i>startIndex</i> plus <i>length</i> indicates a position not within <i>str</i>.</li></ul></div><h3>Examples</h3><ul class="examples"><li><pre class="code">string::substring('testing string', 0, 4) ==&gt; 'test'</pre></li><li><pre class="code">string::substring('testing string', 8, 3) ==&gt; 'str'</pre></li><li><pre class="code">string::substring('testing string', 8, 0) ==&gt; ''</pre></li><li><pre class="code">string::substring('testing string', -1, 5) ==&gt; ERROR</pre></li><li><pre class="code">string::substring('testing string', 8, -1) ==&gt; ERROR</pre></li><li><pre class="code">string::substring('testing string', 5, 17) ==&gt; ERROR</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>startIndex</i> or <i>length</i> is less than zero.</li><li><i>startIndex</i> is greater than the length of <i>str</i>.</li><li><i>startIndex</i> plus <i>length</i> indicates a position not within <i>str</i>.</li></ul></div><h3>Examples</h3><ul class="examples"><li><pre class="code">string::substring('testing string', 0, 4) ==&gt; 'test'</pre></li><li><pre class="code">string::substring('testing string', 8, 3) ==&gt; 'str'</pre></li><li><pre class="code">string::substring('testing string', 8, 0) ==&gt; ''</pre></li><li><pre class="code">string::substring('testing string', -1, 5) ==&gt; ERROR</pre></li><li><pre class="code">string::substring('testing string', 8, -1) ==&gt; ERROR</pre></li><li><pre class="code">string::substring('testing string', 5, 17) ==&gt; ERROR</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.to-lower(System.String).html b/doc/help/functions/string.to-lower(System.String).html
index 13b9ff9..2f55cc9 100644
--- a/doc/help/functions/string.to-lower(System.String).html
+++ b/doc/help/functions/string.to-lower(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::to-lower</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::to-lower</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the specified string converted to lowercase. </p>
     <h3>Usage</h3>
     <code>string string::to-lower(<span class="parameter">s</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string <i>s</i> in lowercase. <h3>Remarks</h3> The casing rules of the invariant culture are used to convert the <i>s</i> to lowercase. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::to-lower('testing string') ==&gt; 'testing string'</pre></li><li><pre class="code">string::to-lower('Testing String') ==&gt; 'testing string'</pre></li><li><pre class="code">string::to-lower('Test 123') ==&gt; 'test 123'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string <i>s</i> in lowercase. <h3>Remarks</h3> The casing rules of the invariant culture are used to convert the <i>s</i> to lowercase. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::to-lower('testing string') ==&gt; 'testing string'</pre></li><li><pre class="code">string::to-lower('Testing String') ==&gt; 'testing string'</pre></li><li><pre class="code">string::to-lower('Test 123') ==&gt; 'test 123'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.to-upper(System.String).html b/doc/help/functions/string.to-upper(System.String).html
index 1227e34..1fea861 100644
--- a/doc/help/functions/string.to-upper(System.String).html
+++ b/doc/help/functions/string.to-upper(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::to-upper</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::to-upper</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the specified string converted to uppercase. </p>
     <h3>Usage</h3>
     <code>string string::to-upper(<span class="parameter">s</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string <i>s</i> in uppercase. <h3>Remarks</h3> The casing rules of the invariant culture are used to convert the <i>s</i> to uppercase. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::to-upper('testing string') ==&gt; 'TESTING STRING'</pre></li><li><pre class="code">string::to-upper('Testing String') ==&gt; 'TESTING STRING'</pre></li><li><pre class="code">string::to-upper('Test 123') ==&gt; 'TEST 123'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string <i>s</i> in uppercase. <h3>Remarks</h3> The casing rules of the invariant culture are used to convert the <i>s</i> to uppercase. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::to-upper('testing string') ==&gt; 'TESTING STRING'</pre></li><li><pre class="code">string::to-upper('Testing String') ==&gt; 'TESTING STRING'</pre></li><li><pre class="code">string::to-upper('Test 123') ==&gt; 'TEST 123'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.trim(System.String).html b/doc/help/functions/string.trim(System.String).html
index d816f84..8d9e490 100644
--- a/doc/help/functions/string.trim(System.String).html
+++ b/doc/help/functions/string.trim(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::trim</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::trim</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the given string trimmed of whitespace. </p>
     <h3>Usage</h3>
     <code>string string::trim(<span class="parameter">s</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string <i>s</i> with any leading or trailing white space characters removed. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::trim('  test  ') ==&gt; 'test'</pre></li><li><pre class="code">string::trim('\t\tfoo  \r\n') ==&gt; 'foo'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string <i>s</i> with any leading or trailing white space characters removed. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::trim('  test  ') ==&gt; 'test'</pre></li><li><pre class="code">string::trim('\t\tfoo  \r\n') ==&gt; 'foo'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.trim-end(System.String).html b/doc/help/functions/string.trim-end(System.String).html
index a627f54..956bf67 100644
--- a/doc/help/functions/string.trim-end(System.String).html
+++ b/doc/help/functions/string.trim-end(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::trim-end</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::trim-end</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the given string trimmed of trailing whitespace. </p>
     <h3>Usage</h3>
     <code>string string::trim-end(<span class="parameter">s</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string <i>s</i> with any trailing white space characters removed. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::trim-end('  test  ') ==&gt; '  test'</pre></li><li><pre class="code">string::trim-end('\t\tfoo  \r\n') ==&gt; '\t\tfoo'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string <i>s</i> with any trailing white space characters removed. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::trim-end('  test  ') ==&gt; '  test'</pre></li><li><pre class="code">string::trim-end('\t\tfoo  \r\n') ==&gt; '\t\tfoo'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/string.trim-start(System.String).html b/doc/help/functions/string.trim-start(System.String).html
index fd6942a..7a727cd 100644
--- a/doc/help/functions/string.trim-start(System.String).html
+++ b/doc/help/functions/string.trim-start(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> string::trim-start</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>string::trim-start</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the given string trimmed of leading whitespace. </p>
     <h3>Usage</h3>
     <code>string string::trim-start(<span class="parameter">s</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string <i>s</i> with any leading whites pace characters removed. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::trim-start('  test  ') ==&gt; 'test  '</pre></li><li><pre class="code">string::trim-start('\t\tfoo  \r\n') ==&gt; 'foo  \r\n'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string <i>s</i> with any leading whites pace characters removed. <h3>Examples</h3><ul class="examples"><li><pre class="code">string::trim-start('  test  ') ==&gt; 'test  '</pre></li><li><pre class="code">string::trim-start('\t\tfoo  \r\n') ==&gt; 'foo  \r\n'</pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/target.exists(System.String).html b/doc/help/functions/target.exists(System.String).html
index de8e119..4d9b143 100644
--- a/doc/help/functions/target.exists(System.String).html
+++ b/doc/help/functions/target.exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> target::exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>target::exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the specified target exists. </p>
     <h3>Usage</h3>
     <code>bool target::exists(<span class="parameter">name</span>)
@@ -50,6 +49,6 @@
 &lt;if test="${target::exists('clean')}"&gt;
     &lt;call target="clean" /&gt;
 &lt;/if&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/target.get-current-target().html b/doc/help/functions/target.get-current-target().html
index 814ac45..84dddf4 100644
--- a/doc/help/functions/target.get-current-target().html
+++ b/doc/help/functions/target.get-current-target().html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> target::get-current-target</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>target::get-current-target</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the name of the target being executed. </p>
     <h3>Usage</h3>
     <code>string target::get-current-target()
@@ -32,6 +31,6 @@
     <p />
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a> that contains the name of the target being executed. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>No target is being executed.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>No target is being executed.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/target.has-executed(System.String).html b/doc/help/functions/target.has-executed(System.String).html
index 14f58d2..7490a9b 100644
--- a/doc/help/functions/target.has-executed(System.String).html
+++ b/doc/help/functions/target.has-executed(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> target::has-executed</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>target::has-executed</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the specified target has already been executed. </p>
     <h3>Usage</h3>
     <code>bool target::has-executed(<span class="parameter">name</span>)
@@ -48,6 +47,6 @@
     <h3>Return Value</h3>
     <b>true</b> if the specified target has already been executed; otherwise, <b>false</b>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>Target <i>name</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>Target <i>name</i> does not exist.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/task.exists(System.String).html b/doc/help/functions/task.exists(System.String).html
index 2cb9cb7..5f194d9 100644
--- a/doc/help/functions/task.exists(System.String).html
+++ b/doc/help/functions/task.exists(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> task::exists</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>task::exists</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks whether the specified task exists. </p>
     <h3>Usage</h3>
     <code>bool task::exists(<span class="parameter">name</span>)
@@ -46,6 +45,6 @@
       </table>
     </div>
     <h3>Return Value</h3>
-    <b>true</b> if the specified task exists; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <b>true</b> if the specified task exists; otherwise, <b>false</b>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/task.get-assembly(System.String).html b/doc/help/functions/task.get-assembly(System.String).html
index 701ed10..17723d2 100644
--- a/doc/help/functions/task.get-assembly(System.String).html
+++ b/doc/help/functions/task.get-assembly(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> task::get-assembly</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>task::get-assembly</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyClassTopic.asp">Assembly</a> from which the specified task was loaded. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
     </div>
     <h3>Return Value</h3> The <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemReflectionAssemblyClassTopic.asp">Assembly</a> from which the specified task was loaded. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li>Task <i>name</i> is not available.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li>Task <i>name</i> is not available.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.from-days(System.Double).html b/doc/help/functions/timespan.from-days(System.Double).html
index a30cea5..40800e8 100644
--- a/doc/help/functions/timespan.from-days(System.Double).html
+++ b/doc/help/functions/timespan.from-days(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::from-days</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::from-days</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents a specified number of days, where the specification is accurate to the nearest millisecond. </p>
     <h3>Usage</h3>
     <code>timespan timespan::from-days(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.from-hours(System.Double).html b/doc/help/functions/timespan.from-hours(System.Double).html
index 276fd59..da9b4ef 100644
--- a/doc/help/functions/timespan.from-hours(System.Double).html
+++ b/doc/help/functions/timespan.from-hours(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::from-hours</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::from-hours</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents a specified number of hours, where the specification is accurate to the nearest millisecond. </p>
     <h3>Usage</h3>
     <code>timespan timespan::from-hours(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.from-milliseconds(System.Double).html b/doc/help/functions/timespan.from-milliseconds(System.Double).html
index 14a1aac..c97a969 100644
--- a/doc/help/functions/timespan.from-milliseconds(System.Double).html
+++ b/doc/help/functions/timespan.from-milliseconds(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::from-milliseconds</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::from-milliseconds</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents a specified number of milliseconds. </p>
     <h3>Usage</h3>
     <code>timespan timespan::from-milliseconds(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.from-minutes(System.Double).html b/doc/help/functions/timespan.from-minutes(System.Double).html
index 4bf2bb1..9d46538 100644
--- a/doc/help/functions/timespan.from-minutes(System.Double).html
+++ b/doc/help/functions/timespan.from-minutes(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::from-minutes</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::from-minutes</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents a specified number of minutes, where the specification is accurate to the nearest millisecond. </p>
     <h3>Usage</h3>
     <code>timespan timespan::from-minutes(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.from-seconds(System.Double).html b/doc/help/functions/timespan.from-seconds(System.Double).html
index 0058bc6..7d39325 100644
--- a/doc/help/functions/timespan.from-seconds(System.Double).html
+++ b/doc/help/functions/timespan.from-seconds(System.Double).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::from-seconds</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::from-seconds</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents a specified number of seconds, where the specification is accurate to the nearest millisecond. </p>
     <h3>Usage</h3>
     <code>timespan timespan::from-seconds(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.from-ticks(System.Int64).html b/doc/help/functions/timespan.from-ticks(System.Int64).html
index 0e47453..0f03256 100644
--- a/doc/help/functions/timespan.from-ticks(System.Int64).html
+++ b/doc/help/functions/timespan.from-ticks(System.Int64).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::from-ticks</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::from-ticks</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents a specified time, where the specification is in units of ticks. </p>
     <h3>Usage</h3>
     <code>timespan timespan::from-ticks(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that represents <i>value</i>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-days(System.TimeSpan).html b/doc/help/functions/timespan.get-days(System.TimeSpan).html
index 67ada80..ef7ab75 100644
--- a/doc/help/functions/timespan.get-days(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-days(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-days</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-days</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the number of whole days represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. </p>
     <h3>Usage</h3>
     <code>int timespan::get-days(<span class="parameter">value</span>)
@@ -51,6 +50,6 @@
         &lt;delete file="${filename}" /&gt;
     &lt;/if&gt;
 &lt;/foreach&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-hours(System.TimeSpan).html b/doc/help/functions/timespan.get-hours(System.TimeSpan).html
index becdb50..cb4e95a 100644
--- a/doc/help/functions/timespan.get-hours(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-hours(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-hours</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-hours</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the number of whole hours represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. </p>
     <h3>Usage</h3>
     <code>int timespan::get-hours(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The number of whole hours represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The number of whole hours represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-milliseconds(System.TimeSpan).html b/doc/help/functions/timespan.get-milliseconds(System.TimeSpan).html
index fa37a8d..e84efcc 100644
--- a/doc/help/functions/timespan.get-milliseconds(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-milliseconds(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-milliseconds</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-milliseconds</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the number of whole milliseconds represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. </p>
     <h3>Usage</h3>
     <code>int timespan::get-milliseconds(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The number of whole milliseconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The number of whole milliseconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-minutes(System.TimeSpan).html b/doc/help/functions/timespan.get-minutes(System.TimeSpan).html
index fd467d9..322a443 100644
--- a/doc/help/functions/timespan.get-minutes(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-minutes(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-minutes</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-minutes</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the number of whole minutes represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. </p>
     <h3>Usage</h3>
     <code>int timespan::get-minutes(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The number of whole minutes represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The number of whole minutes represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-seconds(System.TimeSpan).html b/doc/help/functions/timespan.get-seconds(System.TimeSpan).html
index 05c8250..769938e 100644
--- a/doc/help/functions/timespan.get-seconds(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-seconds(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-seconds</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-seconds</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the number of whole seconds represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. </p>
     <h3>Usage</h3>
     <code>int timespan::get-seconds(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The number of whole seconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The number of whole seconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-ticks(System.TimeSpan).html b/doc/help/functions/timespan.get-ticks(System.TimeSpan).html
index 7d949cb..06fc2f9 100644
--- a/doc/help/functions/timespan.get-ticks(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-ticks(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-ticks</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-ticks</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the number of ticks contained in the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. </p>
     <h3>Usage</h3>
     <code>long timespan::get-ticks(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The number of ticks contained in the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The number of ticks contained in the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-total-days(System.TimeSpan).html b/doc/help/functions/timespan.get-total-days(System.TimeSpan).html
index 21db229..9d1028a 100644
--- a/doc/help/functions/timespan.get-total-days(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-total-days(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-total-days</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-total-days</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the total number of days represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>, expressed in whole and fractional days. </p>
     <h3>Usage</h3>
     <code>double timespan::get-total-days(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The total number of days represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The total number of days represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-total-hours(System.TimeSpan).html b/doc/help/functions/timespan.get-total-hours(System.TimeSpan).html
index aff186f..ea64fe9 100644
--- a/doc/help/functions/timespan.get-total-hours(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-total-hours(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-total-hours</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-total-hours</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the total number of hours represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>, expressed in whole and fractional hours. </p>
     <h3>Usage</h3>
     <code>double timespan::get-total-hours(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The total number of hours represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The total number of hours represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-total-milliseconds(System.TimeSpan).html b/doc/help/functions/timespan.get-total-milliseconds(System.TimeSpan).html
index 74ca9e4..ee006ab 100644
--- a/doc/help/functions/timespan.get-total-milliseconds(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-total-milliseconds(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-total-milliseconds</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-total-milliseconds</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the total number of milliseconds represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>, expressed in whole and fractional milliseconds. </p>
     <h3>Usage</h3>
     <code>double timespan::get-total-milliseconds(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The total number of milliseconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The total number of milliseconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-total-minutes(System.TimeSpan).html b/doc/help/functions/timespan.get-total-minutes(System.TimeSpan).html
index a7f6bca..eb8c960 100644
--- a/doc/help/functions/timespan.get-total-minutes(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-total-minutes(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-total-minutes</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-total-minutes</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the total number of minutes represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>, expressed in whole and fractional minutes. </p>
     <h3>Usage</h3>
     <code>double timespan::get-total-minutes(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The total number of minutes represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The total number of minutes represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.get-total-seconds(System.TimeSpan).html b/doc/help/functions/timespan.get-total-seconds(System.TimeSpan).html
index ba45812..3de009a 100644
--- a/doc/help/functions/timespan.get-total-seconds(System.TimeSpan).html
+++ b/doc/help/functions/timespan.get-total-seconds(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::get-total-seconds</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::get-total-seconds</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Returns the total number of seconds represented by the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>, expressed in whole and fractional seconds. </p>
     <h3>Usage</h3>
     <code>double timespan::get-total-seconds(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The total number of seconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The total number of seconds represented by the given <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.parse(System.String).html b/doc/help/functions/timespan.parse(System.String).html
index e95b7ab..5cf1ea7 100644
--- a/doc/help/functions/timespan.parse(System.String).html
+++ b/doc/help/functions/timespan.parse(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::parse</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::parse</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Constructs a <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> from a time indicated by a specified string. </p>
     <h3>Usage</h3>
     <code>timespan timespan::parse(<span class="parameter">s</span>)
@@ -47,6 +46,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> that corresponds to <i>s</i>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>s</i> has an invalid format.</li><li>At least one of the hours, minutes, or seconds components is outside its valid range.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>s</i> has an invalid format.</li><li>At least one of the hours, minutes, or seconds components is outside its valid range.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/timespan.to-string(System.TimeSpan).html b/doc/help/functions/timespan.to-string(System.TimeSpan).html
index 0e09c82..3ce1029 100644
--- a/doc/help/functions/timespan.to-string(System.TimeSpan).html
+++ b/doc/help/functions/timespan.to-string(System.TimeSpan).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> timespan::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>timespan::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemTimeSpanClassTopic.asp">TimeSpan</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string timespan::to-string(<span class="parameter">value</span>)
@@ -45,6 +44,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string representation of <i>value</i>. The format of the return value is of the form: [-][d.]hh:mm:ss[.ff]. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string representation of <i>value</i>. The format of the return value is of the form: [-][d.]hh:mm:ss[.ff]. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/version.get-build(System.Version).html b/doc/help/functions/version.get-build(System.Version).html
index a057097..201d086 100644
--- a/doc/help/functions/version.get-build(System.Version).html
+++ b/doc/help/functions/version.get-build(System.Version).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> version::get-build</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>version::get-build</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the value of the build component of a given version. </p>
     <h3>Usage</h3>
     <code>int version::get-build(<span class="parameter">version</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The build number, or -1 if the build number is undefined. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The build number, or -1 if the build number is undefined. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assemblyname.get-version(System.Reflection.AssemblyName).html">assemblyname::get-version()</a> | <a href="../functions/environment.get-version().html">environment::get-version()</a> | <a href="../functions/operating-system.get-version(System.OperatingSystem).html">operating-system::get-version()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/version.get-major(System.Version).html b/doc/help/functions/version.get-major(System.Version).html
index 25370ee..ec2149d 100644
--- a/doc/help/functions/version.get-major(System.Version).html
+++ b/doc/help/functions/version.get-major(System.Version).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> version::get-major</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>version::get-major</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the value of the major component of a given version. </p>
     <h3>Usage</h3>
     <code>int version::get-major(<span class="parameter">version</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The major version number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The major version number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assemblyname.get-version(System.Reflection.AssemblyName).html">assemblyname::get-version()</a> | <a href="../functions/environment.get-version().html">environment::get-version()</a> | <a href="../functions/operating-system.get-version(System.OperatingSystem).html">operating-system::get-version()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/version.get-minor(System.Version).html b/doc/help/functions/version.get-minor(System.Version).html
index dc9e4f7..d36c697 100644
--- a/doc/help/functions/version.get-minor(System.Version).html
+++ b/doc/help/functions/version.get-minor(System.Version).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> version::get-minor</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>version::get-minor</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the value of the minor component of a given version. </p>
     <h3>Usage</h3>
     <code>int version::get-minor(<span class="parameter">version</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The minor version number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The minor version number. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assemblyname.get-version(System.Reflection.AssemblyName).html">assemblyname::get-version()</a> | <a href="../functions/environment.get-version().html">environment::get-version()</a> | <a href="../functions/operating-system.get-version(System.OperatingSystem).html">operating-system::get-version()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/version.get-revision(System.Version).html b/doc/help/functions/version.get-revision(System.Version).html
index 497c1d6..d837d33 100644
--- a/doc/help/functions/version.get-revision(System.Version).html
+++ b/doc/help/functions/version.get-revision(System.Version).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> version::get-revision</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>version::get-revision</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets the value of the revision component of a given version. </p>
     <h3>Usage</h3>
     <code>int version::get-revision(<span class="parameter">version</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The revision number, or -1 if the revision number is undefined. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The revision number, or -1 if the revision number is undefined. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assemblyname.get-version(System.Reflection.AssemblyName).html">assemblyname::get-version()</a> | <a href="../functions/environment.get-version().html">environment::get-version()</a> | <a href="../functions/operating-system.get-version(System.OperatingSystem).html">operating-system::get-version()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/version.parse(System.String).html b/doc/help/functions/version.parse(System.String).html
index b76d8c6..0b89203 100644
--- a/doc/help/functions/version.parse(System.String).html
+++ b/doc/help/functions/version.parse(System.String).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> version::parse</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>version::parse</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified string representation of a version to its <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> equivalent. </p>
     <h3>Usage</h3>
     <code>
@@ -48,6 +47,6 @@
     </div>
     <h3>Return Value</h3> A <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> instance representing the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">String</a>. <h3>Exceptions</h3>
             The function will fail in any of the following circumstances:
-            <div style="margin-left: 40px;"><ul><li><i>version</i> has fewer than two components or more than four components.</li><li>A major, minor, build, or revision component is less than zero.</li><li>At least one component of <i>version</i> does not parse to a decimal integer.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+            <div style="margin-left: 40px;"><ul><li><i>version</i> has fewer than two components or more than four components.</li><li>A major, minor, build, or revision component is less than zero.</li><li>At least one component of <i>version</i> does not parse to a decimal integer.</li></ul></div><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/functions/version.to-string(System.Version).html b/doc/help/functions/version.to-string(System.Version).html
index d7ac86b..d0c6fc6 100644
--- a/doc/help/functions/version.to-string(System.Version).html
+++ b/doc/help/functions/version.to-string(System.Version).html
@@ -20,11 +20,10 @@
           <a href="index.html">Function Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> version::to-string</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>version::to-string</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a> to its equivalent string representation. </p>
     <h3>Usage</h3>
     <code>string version::to-string(<span class="parameter">value</span>)
@@ -47,6 +46,6 @@
         </tr>
       </table>
     </div>
-    <h3>Return Value</h3> The string representation of the values of the major, minor, build, and revision components of the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    <h3>Return Value</h3> The string representation of the values of the major, minor, build, and revision components of the specified <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVersionClassTopic.asp">Version</a>. <h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div><h3>See Also</h3><a href="../functions/assemblyname.get-version(System.Reflection.AssemblyName).html">assemblyname::get-version()</a> | <a href="../functions/environment.get-version().html">environment::get-version()</a> | <a href="../functions/operating-system.get-version(System.OperatingSystem).html">operating-system::get-version()</a></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/fundamentals/buildfiles.html b/doc/help/fundamentals/buildfiles.html
index 7e1893d..7eb4525 100644
--- a/doc/help/fundamentals/buildfiles.html
+++ b/doc/help/fundamentals/buildfiles.html
@@ -17,12 +17,12 @@
                     Build Files
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Build Files</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>NAnt's build files are written in XML. Each build file contains one <a href="projects.html">
                 project</a>&nbsp;and a number of <a href="targets.html">targets</a>.&nbsp; 
             Each target contains a number of <a href="tasks.html">tasks</a>.</p>
diff --git a/doc/help/fundamentals/expressions.html b/doc/help/fundamentals/expressions.html
index 8d93e2c..28b2361 100644
--- a/doc/help/fundamentals/expressions.html
+++ b/doc/help/fundamentals/expressions.html
@@ -17,12 +17,12 @@
                     Expressions
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Expressions</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <h2><a id="contents" />Contents</h2>
         <div>
             1 <a href="#introduction">Introduction</a><br />
diff --git a/doc/help/fundamentals/functions.html b/doc/help/fundamentals/functions.html
index 8c51c82..98b9d7b 100644
--- a/doc/help/fundamentals/functions.html
+++ b/doc/help/fundamentals/functions.html
@@ -17,12 +17,12 @@
                     Functions
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Functions</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>NAnt provides a rich set of bulitin functions, that allow you to:</p>
         <ul>
             <li>
diff --git a/doc/help/fundamentals/index.html b/doc/help/fundamentals/index.html
index c0b9fd7..d593ba5 100644
--- a/doc/help/fundamentals/index.html
+++ b/doc/help/fundamentals/index.html
@@ -15,12 +15,12 @@
                     <a href="../index.html">Help</a> <img alt="-&gt;" src="../images/arrow.gif" /> Fundamentals
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Fundamentals</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>The basic concepts needed to understand and use NAnt.</p>
         <p><img alt=">" src="../images/bullet.gif" /> <a href="running-nant.html">Running NAnt</a></p>
         <p><img alt=">" src="../images/bullet.gif" /> <a href="buildfiles.html">Build Files</a></p>
diff --git a/doc/help/fundamentals/listeners.html b/doc/help/fundamentals/listeners.html
index e3acb29..41f5427 100644
--- a/doc/help/fundamentals/listeners.html
+++ b/doc/help/fundamentals/listeners.html
@@ -38,12 +38,12 @@
                     Loggers &amp; Listeners
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Loggers &amp; Listeners</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <h2>Overview</h2>
         <p>
             NAnt has two related features to allow the build process to be monitored: 
diff --git a/doc/help/fundamentals/projects.html b/doc/help/fundamentals/projects.html
index e2a40b1..f7986a9 100644
--- a/doc/help/fundamentals/projects.html
+++ b/doc/help/fundamentals/projects.html
@@ -17,12 +17,12 @@
                     Projects
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Projects</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>A project has these attributes:</p>
         <div class="table">
             <table>
diff --git a/doc/help/fundamentals/properties.html b/doc/help/fundamentals/properties.html
index b11f84a..ad0d082 100644
--- a/doc/help/fundamentals/properties.html
+++ b/doc/help/fundamentals/properties.html
@@ -17,12 +17,12 @@
                     Properties
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Properties</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <h2><a id="contents" />Contents</h2>
         <div>
             1 <a href="#introduction">Introduction</a><br />
diff --git a/doc/help/fundamentals/running-nant.html b/doc/help/fundamentals/running-nant.html
index 0fb53ff..4643f76 100644
--- a/doc/help/fundamentals/running-nant.html
+++ b/doc/help/fundamentals/running-nant.html
@@ -17,12 +17,12 @@
                     Running NAnt
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Running NAnt</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>
             Running NAnt is simple once you have it <a href="../introduction/fog0000000013.html">
                 installed</a>,&nbsp;just type <code>NAnt</code>.&nbsp;&nbsp;Type <code style="whitespace: nowrap;">
diff --git a/doc/help/fundamentals/targets.html b/doc/help/fundamentals/targets.html
index 7491ebf..614a536 100644
--- a/doc/help/fundamentals/targets.html
+++ b/doc/help/fundamentals/targets.html
@@ -17,12 +17,12 @@
                     Targets
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Targets</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>A target has these attributes:</p>
         <div class="table">
             <table>
diff --git a/doc/help/fundamentals/tasks.html b/doc/help/fundamentals/tasks.html
index 6d80e76..420f24c 100644
--- a/doc/help/fundamentals/tasks.html
+++ b/doc/help/fundamentals/tasks.html
@@ -20,12 +20,12 @@
                     Tasks
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Tasks</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <h2><a id="contents" />Contents</h2>
         <div>
             1 <a href="#introduction">Introduction</a><br />
diff --git a/doc/help/index.html b/doc/help/index.html
index 4409cf4..e292d9a 100644
--- a/doc/help/index.html
+++ b/doc/help/index.html
@@ -14,7 +14,7 @@
                     Help
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
@@ -30,7 +30,7 @@
                 </td>
             </tr>
         </table>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p><img alt=" >" src="images/bullet.gif" /> <b><a href="introduction/index.html">Introduction</a></b><br />
             Requirements, installation, quick start, history of NAnt and other 
             miscellaneous topics.</p>
diff --git a/doc/help/introduction/fog0000000006.html b/doc/help/introduction/fog0000000006.html
index 71d5e26..2e5fd8d 100644
--- a/doc/help/introduction/fog0000000006.html
+++ b/doc/help/introduction/fog0000000006.html
@@ -19,12 +19,12 @@
                     System Requirements
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>System Requirements</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>To use NAnt you need one of the following CLR's:</p>
         <ul>
             <li>Microsoft .NET Framework 1.0</li>
diff --git a/doc/help/introduction/fog0000000041.html b/doc/help/introduction/fog0000000041.html
index a5d2250..6bbbe54 100644
--- a/doc/help/introduction/fog0000000041.html
+++ b/doc/help/introduction/fog0000000041.html
@@ -19,12 +19,12 @@
                     Getting Started
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Getting Started</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>This topic will show you NAnt building itself.&nbsp; Before you begin make sure your system meets the <a href="fog0000000006.html">system requirements</a>.</p>
         <ol>
             <li>Download the <a title="NAnt files page on SourceForge" href="http://sourceforge.net/project/showfiles.php?group_id=31650">latest source release</a>.</li>
diff --git a/doc/help/introduction/fog0000000042.html b/doc/help/introduction/fog0000000042.html
index f00fa63..30b8bc9 100644
--- a/doc/help/introduction/fog0000000042.html
+++ b/doc/help/introduction/fog0000000042.html
@@ -19,12 +19,12 @@
                     History
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>History</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>The idea for NAnt came from <a title="Hazware home page" href="http://www.hazware.com/xbHome.htm">Hazware's XBuild</a> project which in turn was inspired from&nbsp;<a href="http://jakarta.apache.org/ant/">Apache Ant</a>.&nbsp; After emailing the author for a beta 2 release of the tool and getting no response Gerry Shaw ported the code to .NET beta 2.&nbsp; Due to the number of changes from .NET beta 1 to beta 2 the result was a total rewrite.</p>
         <p>NAnt was registered at Source Forge on July 18, 2001 with the first public release made that day.</p>
         <p>The name NAnt comes from the fact that this tool is <em>Not</em> Ant.</p>
diff --git a/doc/help/introduction/fog0000000079.html b/doc/help/introduction/fog0000000079.html
index 5b39d74..7e88b3b 100644
--- a/doc/help/introduction/fog0000000079.html
+++ b/doc/help/introduction/fog0000000079.html
@@ -19,12 +19,12 @@
                     Why NAnt?
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Why NAnt?</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>NAnt is different.&nbsp; Instead of a model where it is extended with shell-based commands, NAnt is extended using task classes.&nbsp; Instead of writing shell commands, the configuration files are XML-based, calling out a target tree where various tasks get executed.&nbsp; Each task is run by an object that implements a particular Task interface.</p>
         <p>Granted, this removes some of the expressive power that is inherent in being able to construct a shell command such as 'find . -name foo -exec rm {}', but it gives you the ability to be cross-platform - to work anywhere and everywhere. And hey, if you really need to execute a shell command, NAnt has an <code>&lt;exec&gt;</code> task that allows different commands to be executed based on the OS it is executing on.</p>
         <p>For more information on why Ant and NAnt were developed read the <a href="http://jakarta.apache.org/ant/manual/">Ant Introduction</a>.</p>
diff --git a/doc/help/introduction/fog0000000081.html b/doc/help/introduction/fog0000000081.html
index b821096..4f3ee8e 100644
--- a/doc/help/introduction/fog0000000081.html
+++ b/doc/help/introduction/fog0000000081.html
@@ -19,12 +19,12 @@
                     Ant Users
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Ant Users</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>If you have used Ant before than NAnt should feel comfortable but NAnt is only compatible with Ant in spirit.&nbsp;&nbsp; Here is a partial list of differences:</p>
         <ul>
             <li>Tasks do not have to be in a target.&nbsp; Tasks that appear directly in the project are executed inorder before any tasks in targets are executed.</li>
diff --git a/doc/help/introduction/index.html b/doc/help/introduction/index.html
index 1445193..4f76c39 100644
--- a/doc/help/introduction/index.html
+++ b/doc/help/introduction/index.html
@@ -15,12 +15,12 @@
                     <a href="../index.html">Help</a> <img alt="-&gt;" src="../images/arrow.gif" /> Introduction
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
         <h1>Introduction</h1>
-        <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        
         <p>Requirements, installation, quick start, history of NAnt and other miscellaneous 
             topics.</p>
         <p><img alt=">" src="../images/bullet.gif" /> <a href="fog0000000079.html">Why NAnt?</a></p>
diff --git a/doc/help/introduction/installation.html b/doc/help/introduction/installation.html
index ab54681..2228ee0 100644
--- a/doc/help/introduction/installation.html
+++ b/doc/help/introduction/installation.html
@@ -22,11 +22,11 @@
                     Installation
                 </td>
                 <td class="NavBar-Cell" align="right">
-                    v0.92-rc1
+                    v0.92
                 </td>
             </tr>
         </table>
-        <h1>Installation</h1> <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
+        <h1>Installation</h1> 
         <p>NAnt is available in either a source or binary distribution. The binary 
             distribution is all you need to use NAnt to build your projects, including 
             creating your own custom tasks, types and functions.</p>
diff --git a/doc/help/tasks/al.html b/doc/help/tasks/al.html
index b0a3267..111b909 100644
--- a/doc/help/tasks/al.html
+++ b/doc/help/tasks/al.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;al&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;al&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Wraps <code>al.exe</code>, the assembly linker for the .NET Framework. </p>
     <p> All specified sources will be embedded using the <code>/embed</code> flag. Other source types are not supported. </p>
     <h3>Parameters</h3>
@@ -320,7 +319,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/asminfo.html b/doc/help/tasks/asminfo.html
index 63ef09a..0cc089e 100644
--- a/doc/help/tasks/asminfo.html
+++ b/doc/help/tasks/asminfo.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;asminfo&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;asminfo&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Generates an AssemblyInfo file using the attributes given. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -154,7 +153,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/attrib.html b/doc/help/tasks/attrib.html
index 09c6ec4..f844470 100644
--- a/doc/help/tasks/attrib.html
+++ b/doc/help/tasks/attrib.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;attrib&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;attrib&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Changes the file attributes of a file or set of files and directories. </p>
     <p>
       <a href="../tasks/attrib.html">&lt;attrib&gt;</a> task does not have the concept of turning attributes off. Instead you specify all the attributes that you want turned on and the rest are turned off by default. </p>
@@ -141,7 +140,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/available.html b/doc/help/tasks/available.html
index 7f7ccdd..bfe4895 100644
--- a/doc/help/tasks/available.html
+++ b/doc/help/tasks/available.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;available&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;available&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -148,7 +147,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/aximp.html b/doc/help/tasks/aximp.html
index e1689ff..ce199e7 100644
--- a/doc/help/tasks/aximp.html
+++ b/doc/help/tasks/aximp.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;aximp&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;aximp&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Generates a Windows Forms Control that wraps ActiveX Controls defined in an OCX. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -187,7 +186,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/call.html b/doc/help/tasks/call.html
index d04dcbe..82abdf8 100644
--- a/doc/help/tasks/call.html
+++ b/doc/help/tasks/call.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;call&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;call&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Calls a NAnt target in the current project. </p>
     <p> When the <a href="../tasks/call.html">&lt;call&gt;</a> task is used to execute a target, both that target and all its dependent targets will be re-executed. </p>
     <p> To avoid dependent targets from being executed more than once, two options are available: </p>
@@ -157,7 +156,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/choose.html b/doc/help/tasks/choose.html
index bcd3bf7..ff8fc50 100644
--- a/doc/help/tasks/choose.html
+++ b/doc/help/tasks/choose.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;choose&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;choose&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <p> Executes an alternate set of task or type definition depending on conditions that are individually set on each group. </p>
     </p>
@@ -135,7 +134,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cl.html b/doc/help/tasks/cl.html
index a7bc3dd..1c9ba56 100644
--- a/doc/help/tasks/cl.html
+++ b/doc/help/tasks/cl.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cl&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cl&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles C/C++ programs using <code>cl.exe</code>, Microsoft's C/C++ compiler. </p>
     <p>This task is intended for version 13.00.9466 of <code>cl.exe</code>.</p>
     <h3>Parameters</h3>
@@ -261,7 +260,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/copy.html b/doc/help/tasks/copy.html
index 2fde2ce..ee16f8a 100644
--- a/doc/help/tasks/copy.html
+++ b/doc/help/tasks/copy.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;copy&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;copy&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Copies a file, a directory, or set of files to a new file or directory. </p>
     <p> Files are only copied if the source file is newer than the destination file, or if the destination file does not exist. However, you can explicitly overwrite files with the <code>overwrite</code> attribute. </p>
     <p> Entire directory structures can be copied to a new location. For this to happen, the following criteria must be met: </p>
@@ -202,7 +201,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/csc.html b/doc/help/tasks/csc.html
index b9a4eeb..6df603e 100644
--- a/doc/help/tasks/csc.html
+++ b/doc/help/tasks/csc.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;csc&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;csc&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles C# programs. </p>
     <p class="i2">
       <b>Note:</b>  In order to have <a href="../tasks/csc.html">&lt;csc&gt;</a> task generate manifest resource names that match those generated by Microsoft Visual Studio.NET, the value of the <code>prefix</code> attribute of the &lt;<code>resources</code>&gt; element should match the "Default Namespace" of the C# project, and the value of the <code>dynamicprefix</code> attribute should be set to "<b>true</b>". </p>
@@ -462,7 +461,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs-changelog.html b/doc/help/tasks/cvs-changelog.html
index d04e488..19bf700 100644
--- a/doc/help/tasks/cvs-changelog.html
+++ b/doc/help/tasks/cvs-changelog.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs-changelog&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs-changelog&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Produces an XML report that represents the cvs changes from the given start day, to a given end date. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -258,7 +257,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs-checkout.html b/doc/help/tasks/cvs-checkout.html
index c5372e4..45f4f4f 100644
--- a/doc/help/tasks/cvs-checkout.html
+++ b/doc/help/tasks/cvs-checkout.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs-checkout&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs-checkout&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks out a CVS module to the required directory. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -299,7 +298,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs-export.html b/doc/help/tasks/cvs-export.html
index e2023a2..f848922 100644
--- a/doc/help/tasks/cvs-export.html
+++ b/doc/help/tasks/cvs-export.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs-export&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs-export&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Exports a cvs module in preperation for a release (i.e. the CVS version folders are not exported). </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -299,7 +298,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs-pass.html b/doc/help/tasks/cvs-pass.html
index bfbb8b0..4401e5b 100644
--- a/doc/help/tasks/cvs-pass.html
+++ b/doc/help/tasks/cvs-pass.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs-pass&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs-pass&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Executes the cvs login command which appends or updates an entry to the specified .cvspass file. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -92,7 +91,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs-rtag.html b/doc/help/tasks/cvs-rtag.html
index bf67d34..6995c18 100644
--- a/doc/help/tasks/cvs-rtag.html
+++ b/doc/help/tasks/cvs-rtag.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs-rtag&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs-rtag&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Tags all sources in the remote repository with a given tag. </p>
     <p> Unlike tag, the rtag command acts only on sources that are in the repository. Any modified sources on the local file system will NOT be tagged with this command, so a commit should be performed before an rtag is done. </p>
     <p> NOTE: Although a working directory is not necessary to perform the command one must be specified in order to remain in compliance with the cvs library. </p>
@@ -302,7 +301,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs-tag.html b/doc/help/tasks/cvs-tag.html
index e76544b..297cbb8 100644
--- a/doc/help/tasks/cvs-tag.html
+++ b/doc/help/tasks/cvs-tag.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs-tag&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs-tag&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Tags all local sources with the specified tag. </p>
     <p> This differs from the <a href="../tasks/cvs-rtag.html">&lt;cvs-rtag&gt;</a> task in that it acts on references to the cvs files contained in your local filesystem. As such the sticky tags and local revisions can be considered in commits. It also allows you to verify that all local files have been checked in before a tag is performed. </p>
     <h3>Parameters</h3>
@@ -302,7 +301,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs-update.html b/doc/help/tasks/cvs-update.html
index 6949e4b..4ab9419 100644
--- a/doc/help/tasks/cvs-update.html
+++ b/doc/help/tasks/cvs-update.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs-update&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs-update&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Updates a CVS module in a local working directory. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -305,7 +304,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/cvs.html b/doc/help/tasks/cvs.html
index d569113..4e25ad7 100644
--- a/doc/help/tasks/cvs.html
+++ b/doc/help/tasks/cvs.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvs&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvs&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Executes the cvs command specified by the command attribute. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -252,7 +251,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/delay-sign.html b/doc/help/tasks/delay-sign.html
index 44698cb..545139c 100644
--- a/doc/help/tasks/delay-sign.html
+++ b/doc/help/tasks/delay-sign.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;delay-sign&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;delay-sign&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Signs delay-signed .NET Assemblies, or re-signs existing assemblies. </p>
     <p> The delay-signing mechanism takes a fileset (named targets) and either a <code>keyfile</code> attribute for a file containing the public and private keys, or <code>keycontainer</code> to name a key container. </p>
     <h3>Parameters</h3>
@@ -163,7 +162,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/delete.html b/doc/help/tasks/delete.html
index 4f1bbb6..0c08045 100644
--- a/doc/help/tasks/delete.html
+++ b/doc/help/tasks/delete.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;delete&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;delete&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Deletes a file, fileset or directory. </p>
     <p> Deletes either a single file, all files in a specified directory and its sub-directories, or a set of files specified by one or more filesets. </p>
     <p> If the <code>file</code> or <code>dir</code> attribute is set then the fileset contents will be ignored. To delete the files in the fileset ommit the <code>file</code> and <code>dir</code> attributes in the <code>&lt;delete&gt;</code> element. </p>
@@ -125,7 +124,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/description.html b/doc/help/tasks/description.html
index ca7891e..4eda339 100644
--- a/doc/help/tasks/description.html
+++ b/doc/help/tasks/description.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;description&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;description&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> An empty task that allows a build file to contain a description. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -72,7 +71,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/echo.html b/doc/help/tasks/echo.html
index 9a6895d..b8e8e0f 100644
--- a/doc/help/tasks/echo.html
+++ b/doc/help/tasks/echo.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;echo&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;echo&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Writes a message to the build log or a specified file. </p>
     <p> The message can be specified using the <code>message</code> attribute or as inline content. If neither is included - or the message contains only whitespace - then an empty message will be emitted in the output. </p>
     <p> Macros in the message will be expanded. </p>
@@ -143,7 +142,7 @@ Second line&lt;/echo&gt;
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/exec.html b/doc/help/tasks/exec.html
index 876a36e..52e5314 100644
--- a/doc/help/tasks/exec.html
+++ b/doc/help/tasks/exec.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;exec&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;exec&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Executes a system command. </p>
     <p> Use of nested <code>arg</code> element(s) is advised over the <code>commandline</code> parameter, as it supports automatic quoting and can resolve relative to absolute paths. </p>
     <h3>Parameters</h3>
@@ -242,7 +241,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/fail.html b/doc/help/tasks/fail.html
index 63a69fc..e8a545c 100644
--- a/doc/help/tasks/fail.html
+++ b/doc/help/tasks/fail.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;fail&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;fail&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Exits the current build by throwing a <a href="../../sdk/NAnt.Core.BuildException.html">BuildException</a>, optionally printing additional information. </p>
     <p> The cause of the build failure can be specified using the <code>message</code> attribute or as inline content. </p>
     <p> Macros in the message will be expanded. </p>
@@ -92,7 +91,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/foreach.html b/doc/help/tasks/foreach.html
index fe8996b..a30835b 100644
--- a/doc/help/tasks/foreach.html
+++ b/doc/help/tasks/foreach.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;foreach&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;foreach&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Loops over a set of items. </p>
     <p> Can loop over files in directory, lines in a file, etc. </p>
     <p> The property value is stored before the loop is done, and restored when the loop is finished. </p>
@@ -194,7 +193,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/get.html b/doc/help/tasks/get.html
index f9f9641..491bb65 100644
--- a/doc/help/tasks/get.html
+++ b/doc/help/tasks/get.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;get&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;get&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Gets a particular file from a URL source. </p>
     <p> Options include verbose reporting and timestamp based fetches. </p>
     <p> Currently, only HTTP and UNC protocols are supported. FTP support may be added when more pluggable protocols are added to the System.Net assembly. </p>
@@ -163,7 +162,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/gunzip.html b/doc/help/tasks/gunzip.html
index 45b5dbf..8f617cd 100644
--- a/doc/help/tasks/gunzip.html
+++ b/doc/help/tasks/gunzip.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;gunzip&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;gunzip&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Expands a file packed using GZip compression. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -84,7 +83,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/if.html b/doc/help/tasks/if.html
index 3a30a7a..cae02de 100644
--- a/doc/help/tasks/if.html
+++ b/doc/help/tasks/if.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;if&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;if&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Checks the conditional attributes and executes the children if <b>true</b>. </p>
     <p> If no conditions are checked, all child tasks are executed. </p>
     <p> If more than one attribute is used, they are &amp;&amp;'d. The first to fail stops the check. </p>
@@ -250,7 +249,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/ifnot.html b/doc/help/tasks/ifnot.html
index 94c1b0a..8adaa99 100644
--- a/doc/help/tasks/ifnot.html
+++ b/doc/help/tasks/ifnot.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;ifnot&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;ifnot&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -159,7 +158,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/ilasm.html b/doc/help/tasks/ilasm.html
index 9cfb319..ad54e8f 100644
--- a/doc/help/tasks/ilasm.html
+++ b/doc/help/tasks/ilasm.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;ilasm&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;ilasm&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles ILASM programs. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -234,7 +233,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/ildasm.html b/doc/help/tasks/ildasm.html
index 2d538f2..89d682d 100644
--- a/doc/help/tasks/ildasm.html
+++ b/doc/help/tasks/ildasm.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;ildasm&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;ildasm&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Disassembles any portable executable (PE) file that contains intermediate language (IL) code. </p>
     <p> Files are only disassembled if the input file is newer than the output file, or if the output file does not exist. However, you can explicitly force files to be disassembled with the <code>rebuild</code> attribute. </p>
     <p> A <a href="../types/fileset.html">&lt;fileset&gt;</a> can be used to select files to disassemble. To use a <a href="../types/fileset.html">&lt;fileset&gt;</a>, the <code>todir</code> attribute must be set. The file name of the output file will be equal to the file name of the input file, but with extension ".il". </p>
@@ -244,7 +243,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.MSNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.MSNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/include.html b/doc/help/tasks/include.html
index 79c9657..69495f6 100644
--- a/doc/help/tasks/include.html
+++ b/doc/help/tasks/include.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;include&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;include&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Includes an external build file. </p>
     <p> This task is used to break your build file into smaller chunks. You can load a partial build file and have it included into the build file. </p>
     <p class="i2">
@@ -87,7 +86,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/index.html b/doc/help/tasks/index.html
index da639ec..ef02534 100644
--- a/doc/help/tasks/index.html
+++ b/doc/help/tasks/index.html
@@ -20,11 +20,10 @@
                             Task Reference
                         </td>
         <td class="NavBar-Cell" align="right">
-                            v0.92-rc1</td>
+                            v0.92</td>
       </tr>
     </table>
     <h1>Task Reference</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <div class="table">
       <table>
         <colgroup>
diff --git a/doc/help/tasks/jsc.html b/doc/help/tasks/jsc.html
index 8ef51d2..4d74952 100644
--- a/doc/help/tasks/jsc.html
+++ b/doc/help/tasks/jsc.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;jsc&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;jsc&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles JScript.NET programs. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -310,7 +309,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/lib.html b/doc/help/tasks/lib.html
index e88991e..4acbce8 100644
--- a/doc/help/tasks/lib.html
+++ b/doc/help/tasks/lib.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;lib&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;lib&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Run <code>lib.exe</code>, Microsoft's Library Manager. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -196,7 +195,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/license.html b/doc/help/tasks/license.html
index c57270a..8ded9a9 100644
--- a/doc/help/tasks/license.html
+++ b/doc/help/tasks/license.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;license&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;license&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Generates a <code>.licence</code> file from a <code>.licx</code> file. </p>
     <p> If no output file is specified, the default filename is the name of the target file with the extension <code>.licenses</code> appended. </p>
     <h3>Parameters</h3>
@@ -161,7 +160,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/link.html b/doc/help/tasks/link.html
index d82ade0..7fa20a0 100644
--- a/doc/help/tasks/link.html
+++ b/doc/help/tasks/link.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;link&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;link&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Links files using <code>link.exe</code>, Microsoft's Incremental Linker. </p>
     <p>This task is intended for version 7.00.9466 of <code>link.exe</code>.</p>
     <h3>Parameters</h3>
@@ -239,7 +238,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/loadfile.html b/doc/help/tasks/loadfile.html
index 4b35e4a..cd25fb8 100644
--- a/doc/help/tasks/loadfile.html
+++ b/doc/help/tasks/loadfile.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;loadfile&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;loadfile&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Load a text file into a single property. </p>
     <p> Unless an encoding is specified, the encoding associated with the system's current ANSI code page is used. </p>
     <p> An UTF-8, little-endian Unicode, and big-endian Unicode encoded text file is automatically recognized, if the file starts with the appropriate byte order marks. </p>
@@ -130,7 +129,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/loadtasks.html b/doc/help/tasks/loadtasks.html
index 9bc85df..8123cd2 100644
--- a/doc/help/tasks/loadtasks.html
+++ b/doc/help/tasks/loadtasks.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;loadtasks&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;loadtasks&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Loads tasks form a given assembly or all assemblies in a given directory or <a href="../types/fileset.html">&lt;fileset&gt;</a>. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -114,7 +113,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/mail.html b/doc/help/tasks/mail.html
index 5aa34f2..66e879f 100644
--- a/doc/help/tasks/mail.html
+++ b/doc/help/tasks/mail.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;mail&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;mail&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Sends an SMTP message. </p>
     <p> Text and text files to include in the message body may be specified as well as binary attachments. </p>
     <h3>Parameters</h3>
@@ -222,7 +221,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/mc.html b/doc/help/tasks/mc.html
index 2feb8e1..0bb275c 100644
--- a/doc/help/tasks/mc.html
+++ b/doc/help/tasks/mc.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;mc&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;mc&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles messages using mc.exe, Microsoft's Win32 message compiler. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -162,7 +161,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/midl.html b/doc/help/tasks/midl.html
index 6bfdcb1..26f017d 100644
--- a/doc/help/tasks/midl.html
+++ b/doc/help/tasks/midl.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;midl&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;midl&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> This tasks allows you to run MIDL.exe. </p>
     <p> This task only supports a small subset of the MIDL.EXE command line switches, but you can use the options element to specify any other unsupported commands you want to specify. </p>
     <h3>Parameters</h3>
@@ -271,7 +270,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/mkdir.html b/doc/help/tasks/mkdir.html
index 50f2b9d..42925a0 100644
--- a/doc/help/tasks/mkdir.html
+++ b/doc/help/tasks/mkdir.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;mkdir&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;mkdir&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Creates a directory and any non-existent parent directory if necessary. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -84,7 +83,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/move.html b/doc/help/tasks/move.html
index 3bbef78..25247f9 100644
--- a/doc/help/tasks/move.html
+++ b/doc/help/tasks/move.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;move&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;move&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Moves a file, a directory, or set of files to a new file or directory. </p>
     <p> Files are only moved if the source file is newer than the destination file, or if the destination file does not exist. However, you can explicitly overwrite files with the <code>overwrite</code> attribute. </p>
     <p> Entire directory structures can be moved to a new location. For this to happen, the following criteria must be met: </p>
@@ -201,7 +200,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/nant.html b/doc/help/tasks/nant.html
index 15e1fc6..0fb6f82 100644
--- a/doc/help/tasks/nant.html
+++ b/doc/help/tasks/nant.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;nant&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;nant&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Runs NAnt on a supplied build file, or a set of build files. </p>
     <p> By default, all the properties of the current project will be available in the new project. Alternatively, you can set <code>inheritall</code> to <b>false</b> to not copy any properties to the new project. </p>
     <p> You can also set properties in the new project from the old project by using nested property tags. These properties are always passed to the new project regardless of the setting of <code>inheritall</code>. This allows you to parameterize your subprojects. </p>
@@ -159,7 +158,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/nantschema.html b/doc/help/tasks/nantschema.html
index 56c1e41..2d4c78a 100644
--- a/doc/help/tasks/nantschema.html
+++ b/doc/help/tasks/nantschema.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;nantschema&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;nantschema&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Creates an XSD File for all available tasks. </p>
     <p> This can be used in conjuntion with the command-line option to do XSD Schema validation on the build file. </p>
     <h3>Parameters</h3>
@@ -91,7 +90,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/ndoc.html b/doc/help/tasks/ndoc.html
index c1ac233..cee0e08 100644
--- a/doc/help/tasks/ndoc.html
+++ b/doc/help/tasks/ndoc.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;ndoc&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;ndoc&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Runs NDoc V1.3.1 to create documentation. </p>
     <p> See the <a href="http://ndoc.sourceforge.net/">NDoc home page</a> for more information. </p>
     <p class="i2">
@@ -166,7 +165,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/nunit.html b/doc/help/tasks/nunit.html
index 4f7c952..446d77c 100644
--- a/doc/help/tasks/nunit.html
+++ b/doc/help/tasks/nunit.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;nunit&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;nunit&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <i>(Deprecated)</i>
     </p>
@@ -127,7 +126,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit1Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit1Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/nunit2.html b/doc/help/tasks/nunit2.html
index fbd0a29..6d13c97 100644
--- a/doc/help/tasks/nunit2.html
+++ b/doc/help/tasks/nunit2.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;nunit2&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;nunit2&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Runs tests using the NUnit V2.6 framework. </p>
     <p> The <code>haltonfailure</code> attribute is only useful when more than one test suite is used, and you want to continue running other test suites although a test failed. </p>
     <p> Set <code>failonerror</code> to <b>false</b> to ignore any errors and continue the build. </p>
@@ -153,7 +152,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/property.html b/doc/help/tasks/property.html
index 9262861..0167506 100644
--- a/doc/help/tasks/property.html
+++ b/doc/help/tasks/property.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;property&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;property&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Sets a property in the current project. </p>
     <p class="i2">
       <b>Note:</b> NAnt uses a number of predefined properties.</p>
@@ -131,7 +130,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/rc.html b/doc/help/tasks/rc.html
index 757b06f..6baacab 100644
--- a/doc/help/tasks/rc.html
+++ b/doc/help/tasks/rc.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;rc&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;rc&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles resources using <code>rc.exe</code>, Microsoft's Win32 resource compiler. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -184,7 +183,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VisualCppTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/readregistry.html b/doc/help/tasks/readregistry.html
index ed4795c..904240e 100644
--- a/doc/help/tasks/readregistry.html
+++ b/doc/help/tasks/readregistry.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;readregistry&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;readregistry&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Reads a value or set of values from the Windows Registry into one or more NAnt properties. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -106,7 +105,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/regasm.html b/doc/help/tasks/regasm.html
index d840e9b..719ad50 100644
--- a/doc/help/tasks/regasm.html
+++ b/doc/help/tasks/regasm.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;regasm&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;regasm&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Registers an assembly, or set of assemblies for use from COM clients. </p>
     <p> Refer to the <a href="ms-help://MS.VSCC/MS.MSDNVS/cptools/html/cpgrfassemblyregistrationtoolregasmexe.htm">Regasm</a> documentation for more information on the regasm tool. </p>
     <h3>Parameters</h3>
@@ -215,7 +214,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/regex.html b/doc/help/tasks/regex.html
index ae15344..d7be9c4 100644
--- a/doc/help/tasks/regex.html
+++ b/doc/help/tasks/regex.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;regex&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;regex&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Sets project properties based on the evaluatuion of a regular expression. </p>
     <p> The <code>pattern</code> attribute must contain one or more <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpcongroupingconstructs.asp"> named grouping constructs</a>, which represents the names of the properties to be set. These named grouping constructs can be enclosed by angle brackets (?&lt;name&gt;) or single quotes (?'name'). </p>
     <p class="i2">
@@ -111,7 +110,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/regsvcs.html b/doc/help/tasks/regsvcs.html
index cc7a4ad..138108c 100644
--- a/doc/help/tasks/regsvcs.html
+++ b/doc/help/tasks/regsvcs.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;regsvcs&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;regsvcs&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Installs or removes .NET Services. </p>
     <p> This tasks provides the same functionality as the <code>regsvcs</code> tool provided in the .NET SDK. </p>
     <p> It performs the following actions: </p>
@@ -216,7 +215,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/resgen.html b/doc/help/tasks/resgen.html
index 488ac5b..7e65c57 100644
--- a/doc/help/tasks/resgen.html
+++ b/doc/help/tasks/resgen.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;resgen&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;resgen&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Converts files from one resource format to another. </p>
     <p class="i2">
       <b>Note:</b>  If no <code>todir</code> is specified, the resource file will be created next to the input file. </p>
@@ -212,7 +211,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/script.html b/doc/help/tasks/script.html
index 94029ec..27f5286 100644
--- a/doc/help/tasks/script.html
+++ b/doc/help/tasks/script.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;script&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;script&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Executes the code contained within the task. </p>
     <h5 xmlns="">Code</h5>
     <p> The <a href="../tasks/script.html">&lt;script&gt;</a> task must contain a single <code>code</code> element, which in turn contains the script code. </p>
@@ -270,7 +269,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/servicecontroller.html b/doc/help/tasks/servicecontroller.html
index 558e5e2..819e6e3 100644
--- a/doc/help/tasks/servicecontroller.html
+++ b/doc/help/tasks/servicecontroller.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;servicecontroller&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;servicecontroller&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Allows a Windows service to be controlled. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -104,7 +103,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.MSNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.MSNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/setenv.html b/doc/help/tasks/setenv.html
index 0c97861..15d7ebb 100644
--- a/doc/help/tasks/setenv.html
+++ b/doc/help/tasks/setenv.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;setenv&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;setenv&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Sets an environment variable or a whole collection of them. Use an empty <code>value</code> attribute to clear a variable. </p>
     <p class="i2">
       <b>Note:</b>  Variables will be set for the current NAnt process and all child processes that NAnt spawns (compilers, shell tools, etc). If the intention is to only set a variable for a single child process, then using the <a href="../tasks/exec.html">&lt;exec&gt;</a> task and its nested <code>environment</code> element might be a better option. </p>
@@ -218,7 +217,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/sleep.html b/doc/help/tasks/sleep.html
index 24a3be3..d5ddba8 100644
--- a/doc/help/tasks/sleep.html
+++ b/doc/help/tasks/sleep.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;sleep&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;sleep&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A task for sleeping a specified period of time, useful when a build or deployment process requires an interval between tasks. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -102,7 +101,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/solution.html b/doc/help/tasks/solution.html
index 294fa60..c24a4b1 100644
--- a/doc/help/tasks/solution.html
+++ b/doc/help/tasks/solution.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;solution&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;solution&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles VS.NET solutions (or sets of projects), automatically determining project dependencies from inter-project references. </p>
     <p> This task support the following projects: </p>
     <ul style="list-style-type: disc;">
@@ -260,7 +259,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.VSNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.VSNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/style.html b/doc/help/tasks/style.html
index 443495f..7dc0e61 100644
--- a/doc/help/tasks/style.html
+++ b/doc/help/tasks/style.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;style&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;style&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Processes a document via XSLT. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -188,7 +187,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/sysinfo.html b/doc/help/tasks/sysinfo.html
index 11f28d3..a9cb2e2 100644
--- a/doc/help/tasks/sysinfo.html
+++ b/doc/help/tasks/sysinfo.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;sysinfo&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;sysinfo&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Sets properties with system information. </p>
     <p>Sets a number of properties with information about the system environment. The intent of this task is for nightly build logs to have a record of system information so that the build was performed on.</p>
     <div class="table">
@@ -188,7 +187,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/tar.html b/doc/help/tasks/tar.html
index 9237103..9bd4def 100644
--- a/doc/help/tasks/tar.html
+++ b/doc/help/tasks/tar.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;tar&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;tar&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Creates a tar file from the specified filesets. </p>
     <p>Uses <a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</a> (SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#.</p>
     <h3>Parameters</h3>
@@ -120,7 +119,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/tlbexp.html b/doc/help/tasks/tlbexp.html
index f07403f..374b486 100644
--- a/doc/help/tasks/tlbexp.html
+++ b/doc/help/tasks/tlbexp.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;tlbexp&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;tlbexp&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Exports a .NET assembly to a type library that can be used from unmanaged code (wraps Microsoft's <code>tlbexp.exe</code>). </p>
     <p>
       <a href="ms-help://MS.NETFrameworkSDK/cptools/html/cpgrftypelibraryexportertlbexpexe.htm">See the Microsoft.NET Framework SDK documentation for details.</a>
@@ -155,7 +154,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/tlbimp.html b/doc/help/tasks/tlbimp.html
index 55f86cd..a0d37b8 100644
--- a/doc/help/tasks/tlbimp.html
+++ b/doc/help/tasks/tlbimp.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;tlbimp&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;tlbimp&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Imports a type library to a .NET assembly (wraps Microsoft's <code>tlbimp.exe</code>). </p>
     <p> This task lets you easily create interop assemblies. By default, it will not reimport if the underlying COM TypeLib or reference has not changed. </p>
     <p>
@@ -244,7 +243,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Win32Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/touch.html b/doc/help/tasks/touch.html
index 3c43c0d..1fedb9f 100644
--- a/doc/help/tasks/touch.html
+++ b/doc/help/tasks/touch.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;touch&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;touch&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Touches a file or set of files -- corresponds to the Unix touch command. </p>
     <p> If the file specified does not exist, the task will create it. </p>
     <h3>Parameters</h3>
@@ -115,7 +114,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/trycatch.html b/doc/help/tasks/trycatch.html
index 95357ae..d82a871 100644
--- a/doc/help/tasks/trycatch.html
+++ b/doc/help/tasks/trycatch.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;trycatch&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;trycatch&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Executes a set of tasks, and optionally catches a build exception to allow recovery or rollback steps to be taken, or to define some steps to be taken regardless if the tasks succeed or fail, or both. </p>
     <p> The tasks defined in the <code>&lt;<code>try</code>&gt;</code> block will be executed in turn, as they normally would in a target. </p>
     <p> If a <code>&lt;<code>catch</code>&gt;</code> block is defined, the tasks in that block will be executed in turn only if one of the tasks in the <code>&lt;<code>try</code>&gt;</code> block fails. This failure will then be suppressed by the <code>&lt;<code>catch</code>&gt;</code> block. </p>
@@ -194,7 +193,7 @@ Build failed: Property 'failure' has not been set.
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/tstamp.html b/doc/help/tasks/tstamp.html
index 191bf09..657d8b2 100644
--- a/doc/help/tasks/tstamp.html
+++ b/doc/help/tasks/tstamp.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;tstamp&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;tstamp&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Sets properties with the current date and time. </p>
     <p> By default the <a href="../tasks/tstamp.html">&lt;tstamp&gt;</a> task displays the current date and time and sets the following properties: </p>
     <ul style="list-style-type: disc;">
@@ -154,7 +153,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/untar.html b/doc/help/tasks/untar.html
index 495207e..a72abb6 100644
--- a/doc/help/tasks/untar.html
+++ b/doc/help/tasks/untar.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;untar&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;untar&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Extracts files from a tar archive. </p>
     <p> Uses <a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</a> (SharpZipLib), an open source Zip/GZip library written entirely in C#. </p>
     <h3>Parameters</h3>
@@ -99,7 +98,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/unzip.html b/doc/help/tasks/unzip.html
index ee8db55..ba6f5fd 100644
--- a/doc/help/tasks/unzip.html
+++ b/doc/help/tasks/unzip.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;unzip&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;unzip&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Extracts files from a zip archive. </p>
     <p> Uses <a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</a> (SharpZipLib), an open source Zip/GZip library written entirely in C#. </p>
     <h3>Parameters</h3>
@@ -99,7 +98,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/uptodate.html b/doc/help/tasks/uptodate.html
index 3ab6245..ef7accf 100644
--- a/doc/help/tasks/uptodate.html
+++ b/doc/help/tasks/uptodate.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;uptodate&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;uptodate&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Check modification dates on groups of files. </p> If all <code>targetfiles</code> are same or newer than all <code>sourcefiles</code>, the specified property is set to <b>true</b>, otherwise it is set to <b>false</b>. <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">property</td><td style="text-align: center;">string</td><td> Property that will be set to <b>true</b> or <b>false</b> depending on the result of the date check. </td><td style="text-align: center;">True</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>Nested Elements:</h3><!--Element--><h4><a id="sourcefiles"></a>
                     &lt;<a href="../types/fileset.html">sourcefiles</a>&gt;
                 </h4><div class="nested-element"> The <a href="../types/fileset.html">&lt;fileset&gt;</a> that contains list of source files. <p /></div><h4><a id="sourcefiles"></a>
@@ -42,6 +41,6 @@
         &lt;include name="myfile.dll" /&gt;
     &lt;/targetfiles&gt;
 &lt;/uptodate&gt;
-    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+    </pre></li></ul><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/vbc.html b/doc/help/tasks/vbc.html
index 896048c..c71aabf 100644
--- a/doc/help/tasks/vbc.html
+++ b/doc/help/tasks/vbc.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;vbc&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;vbc&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles Visual Basic.NET programs. </p>
     <p class="i2">
       <b>Note:</b>  In order to have <a href="../tasks/vbc.html">&lt;vbc&gt;</a> task generate manifest resource names that match those generated by Microsoft Visual Studio.NET, the value of the <code>prefix</code> attribute of the &lt;<code>resources</code>&gt; element should match the "Root namespace" of the VB.NET project, and the value of the <code>dynamicprefix</code> attribute should be set to "<b>false</b>". </p>
@@ -473,7 +472,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/vjc.html b/doc/help/tasks/vjc.html
index d623e30..c963563 100644
--- a/doc/help/tasks/vjc.html
+++ b/doc/help/tasks/vjc.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;vjc&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;vjc&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Compiles Visual J# programs using vjc, Microsoft's J# compiler. </p>
     <p class="i2">
       <b>Note:</b>  In order to have <a href="../tasks/vjc.html">&lt;vjc&gt;</a> task generate manifest resource names that match those generated by Microsoft Visual Studio.NET, the value of the <code>prefix</code> attribute of the &lt;<code>resources</code>&gt; element should match the "Default Package" of the J#.NET project, and the value of the <code>dynamicprefix</code> attribute should be set to "<b>true</b>". </p>
@@ -357,7 +356,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/xmlpeek.html b/doc/help/tasks/xmlpeek.html
index e42babb..a83879c 100644
--- a/doc/help/tasks/xmlpeek.html
+++ b/doc/help/tasks/xmlpeek.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;xmlpeek&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;xmlpeek&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Extracts text from an XML file at the location specified by an XPath expression. </p>
     <p> If the XPath expression specifies multiple nodes the node index is used to determine which of the nodes' text is returned. </p>
     <h3>Parameters</h3>
@@ -124,7 +123,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/xmlpoke.html b/doc/help/tasks/xmlpoke.html
index 4e43160..b802edf 100644
--- a/doc/help/tasks/xmlpoke.html
+++ b/doc/help/tasks/xmlpoke.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;xmlpoke&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;xmlpoke&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Replaces text in an XML file at the location specified by an XPath expression. </p>
     <p> The location specified by the XPath expression must exist, it will not create the parent elements for you. However, provided you have a root element you could use a series of the tasks to build the XML file up if necessary. </p>
     <h3>Parameters</h3>
@@ -136,7 +135,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/tasks/zip.html b/doc/help/tasks/zip.html
index 695b384..3ce0872 100644
--- a/doc/help/tasks/zip.html
+++ b/doc/help/tasks/zip.html
@@ -20,11 +20,10 @@
           <a href="../tasks/index.html">Task Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;zip&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;zip&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Creates a zip file from the specified filesets. </p>
     <p> Uses <a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/">#ziplib</a> (SharpZipLib), an open source Tar/Zip/GZip library written entirely in C#. </p>
     <h3>Parameters</h3>
@@ -146,7 +145,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/assemblyfileset.html b/doc/help/types/assemblyfileset.html
index 52008b5..752562e 100644
--- a/doc/help/types/assemblyfileset.html
+++ b/doc/help/types/assemblyfileset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;assemblyfileset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;assemblyfileset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Specialized <a href="../types/fileset.html">&lt;fileset&gt;</a> class for managing assembly files. </p>
     <p> If an include pattern does not contain any wildcard characters then the assembly will be searched for in following locations (in the order listed): </p>
     <ul style="list-style-type: disc;">
@@ -273,7 +272,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
     <h3>See Also</h3>
     <a href="../types/fileset.html">&lt;fileset&gt;</a>
diff --git a/doc/help/types/categories.html b/doc/help/types/categories.html
index abdf65d..224ccb6 100644
--- a/doc/help/types/categories.html
+++ b/doc/help/types/categories.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;categories&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;categories&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Controls the categories of tests to execute using the <a href="../tasks/nunit2.html">&lt;nunit2&gt;</a> task. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -97,7 +96,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.NUnit2Tasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/credential.html b/doc/help/types/credential.html
index 2c6f6ab..e2b1dc5 100644
--- a/doc/help/types/credential.html
+++ b/doc/help/types/credential.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;credential&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;credential&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Provides credentials for password-based authentication schemes. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -81,7 +80,7 @@
     </div>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/cvsfileset.html b/doc/help/types/cvsfileset.html
index 71490d4..d5bda2b 100644
--- a/doc/help/types/cvsfileset.html
+++ b/doc/help/types/cvsfileset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;cvsfileset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;cvsfileset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A <a href="../types/cvsfileset.html">&lt;cvsfileset&gt;</a> is a <a href="../types/fileset.html">&lt;fileset&gt;</a> with extra attributes useful in the context of the <a href="../tasks/cvs.html">&lt;cvs&gt;</a> task. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -188,7 +187,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.SourceControlTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/dirset.html b/doc/help/types/dirset.html
index c9ac9f9..5eb3f35 100644
--- a/doc/help/types/dirset.html
+++ b/doc/help/types/dirset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;dirset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;dirset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A specialized <a href="../types/fileset.html">&lt;fileset&gt;</a> used for specifying a set of directories. </p> Hint for supporting tasks that the included directories instead of files should be used. <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">basedir</td><td style="text-align: center;">directory</td><td> The base of the directory of this fileset. The default is the project base directory. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">casesensitive</td><td style="text-align: center;">bool</td><td> Indicates whether include and exclude patterns must be treated in a case-sensitive way. The default is <b>true</b> on Unix; otherwise, <b>false</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">defaultexcludes</td><td style="text-align: center;">bool</td><td> Indicates whether default excludes should be used or not. The default is <b>true</b>. </td><td style="text-align: center;">False</td></tr><tr><td valign="top">failonempty</td><td style="text-align: center;">bool</td><td> When set to <b>true</b>, causes the fileset element to throw a <a href="../../sdk/NAnt.Core.ValidationException.html">ValidationException</a> when no files match the includes and excludes criteria. The default is <b>false</b>. </td><td style="text-align: center;">False</td></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>Nested Elements:</h3><!--Array--><!--NestedElementArray=T:NAnt.Core.Types.FileSet.Include--><h4><a id="includes"></a>
                     &lt;includes&gt;
                 </h4><div class="nested-element"><i>Deprecated.</i>  The items to include in the fileset. <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></div><h4><a id="includes"></a>
@@ -57,6 +56,6 @@
                     &lt;<a href="../types/patternset.html">patternset</a>&gt;
                 </h4><div class="nested-element"> Adds a nested set of patterns, or references a standalone patternset. <p /></div><h4><a id="patternset"></a>
                     &lt;/<a href="../types/patternset.html">patternset</a>&gt;
-                </h4><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4526.0)
+                </h4><h3>Requirements</h3><div style="margin-left: 20px;"><b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div></body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/fileset.html b/doc/help/types/fileset.html
index 7d0e73e..4ef5373 100644
--- a/doc/help/types/fileset.html
+++ b/doc/help/types/fileset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;fileset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;fileset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Filesets are groups of files. These files can be found in a directory tree starting in a base directory and are matched by patterns taken from a number of patterns. Filesets can appear inside tasks that support this feature or at the project level, i.e., as children of <code>&lt;project&gt;</code>. </p>
     <h3>Patterns</h3>
     <p> As described earlier, patterns are used for the inclusion and exclusion. These patterns look very much like the patterns used in DOS and UNIX: </p>
@@ -304,7 +303,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
     <h3>See Also</h3>
     <a href="../types/patternset.html">&lt;patternset&gt;</a>
diff --git a/doc/help/types/filterchain.html b/doc/help/types/filterchain.html
index 33952c2..9f220da 100644
--- a/doc/help/types/filterchain.html
+++ b/doc/help/types/filterchain.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;filterchain&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;filterchain&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Represent a chain of NAnt filters that can be applied to a <a href="../elements/NAnt.Core.Task.html">Task</a>. </p>
     <p> A FilterChain represents a collection of one or more filters that can be appled to a <a href="../elements/NAnt.Core.Task.html">Task</a> such as the <a href="../tasks/copy.html">&lt;copy&gt;</a> task. In the case of the <a href="../tasks/copy.html">&lt;copy&gt;</a> task, the contents of the copied files are filtered through each filter specified in the filter chain. Filtering occurs in the order the filters are specified with filtered output of one filter feeding into another. </p>
     <p> :--------:---&gt;:----------:---&gt;:----------: ... :----------:---&gt;:--------:<br xmlns=""></br> :.Source.:---&gt;:.Filter 1.:---&gt;:.Filter 2.: ... :.Filter n.:---&gt;:.target.:<br xmlns=""></br> :--------:---&gt;:----------:---&gt;:----------: ... :----------:---&gt;:--------:<br xmlns=""></br></p>
@@ -104,7 +103,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/index.html b/doc/help/types/index.html
index b39e097..77c6f2d 100644
--- a/doc/help/types/index.html
+++ b/doc/help/types/index.html
@@ -20,11 +20,10 @@
                             Type Reference
                         </td>
         <td class="NavBar-Cell" align="right">
-                            v0.92-rc1</td>
+                            v0.92</td>
       </tr>
     </table>
     <h1>Type Reference</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <div class="table">
       <table>
         <tr>
diff --git a/doc/help/types/moduleset.html b/doc/help/types/moduleset.html
index 12e13bc..d6ff4d1 100644
--- a/doc/help/types/moduleset.html
+++ b/doc/help/types/moduleset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;moduleset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;moduleset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <p> One or more modules to compile into an assembly. </p>
     </p>
@@ -85,7 +84,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/namespaceimports.html b/doc/help/types/namespaceimports.html
index 1eb798f..934aa8f 100644
--- a/doc/help/types/namespaceimports.html
+++ b/doc/help/types/namespaceimports.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;namespaceimports&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;namespaceimports&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Contains a collection of <a href="../elements/NAnt.DotNet.Types.NamespaceImport.html">NamespaceImport</a> items. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -89,7 +88,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/path.html b/doc/help/types/path.html
index 2f73086..61d4b09 100644
--- a/doc/help/types/path.html
+++ b/doc/help/types/path.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;path&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;path&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p>
       <p> Paths are groups of files and/or directories that need to be passed as a single unit. The order in which parts of the path are specified in the build file is retained, and duplicate parts are automatically suppressed. </p>
     </p>
@@ -90,7 +89,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/patternset.html b/doc/help/types/patternset.html
index 298398c..8c456d0 100644
--- a/doc/help/types/patternset.html
+++ b/doc/help/types/patternset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;patternset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;patternset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A set of patterns, mostly used to include or exclude certain files. </p>
     <p> The individual patterns support <code>if</code> and <code>unless</code> attributes to specify that the element should only be used if or unless a given condition is met. </p>
     <p> The <code>includesfile</code> and <code>excludesfile</code> elements load patterns from a file. When the file is a relative path, it will be resolved relative to the project base directory in which the patternset is defined. Each line of this file is taken to be a pattern. </p>
@@ -216,7 +215,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
     <h3>See Also</h3>
     <a href="../types/fileset.html">&lt;fileset&gt;</a>
diff --git a/doc/help/types/proxy.html b/doc/help/types/proxy.html
index d7a8de3..2a46f9b 100644
--- a/doc/help/types/proxy.html
+++ b/doc/help/types/proxy.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;proxy&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;proxy&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Contains HTTP proxy settings used to process requests to Internet resources. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -94,7 +93,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.Core (0.92.4526.0)
+      <b>Assembly:</b> NAnt.Core (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/resourcefileset.html b/doc/help/types/resourcefileset.html
index a4da63d..e0ab84c 100644
--- a/doc/help/types/resourcefileset.html
+++ b/doc/help/types/resourcefileset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;resourcefileset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;resourcefileset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Specialized <a href="../types/fileset.html">&lt;fileset&gt;</a> class for managing resource files. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -194,7 +193,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/tarfileset.html b/doc/help/types/tarfileset.html
index c97fa03..a91f234 100644
--- a/doc/help/types/tarfileset.html
+++ b/doc/help/types/tarfileset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;tarfileset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;tarfileset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A <a href="../types/tarfileset.html">&lt;tarfileset&gt;</a> is a <a href="../types/fileset.html">&lt;fileset&gt;</a> with extra attributes useful in the context of the <a href="../tasks/tar.html">&lt;tar&gt;</a> task. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -224,7 +223,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/warnaserror.html b/doc/help/types/warnaserror.html
index 7d14c1e..2b040da 100644
--- a/doc/help/types/warnaserror.html
+++ b/doc/help/types/warnaserror.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;warnaserror&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;warnaserror&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> Controls the behaviour of a compiler with regards to the reporting of warnings. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -97,7 +96,7 @@
     </ul>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.DotNetTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/help/types/zipfileset.html b/doc/help/types/zipfileset.html
index c2998e1..aa97752 100644
--- a/doc/help/types/zipfileset.html
+++ b/doc/help/types/zipfileset.html
@@ -20,11 +20,10 @@
           <a href="../types/index.html">Type Reference</a>
           <img alt="-&gt;" src="../images/arrow.gif" /> &lt;zipfileset&gt;</td>
         <td class="NavBar-Cell" align="right">
-                        v0.92-rc1</td>
+                        v0.92</td>
       </tr>
     </table>
     <h1>&lt;zipfileset&gt;</h1>
-    <p class="topicstatus">[This is preliminary documentation and subject to change.]</p>
     <p> A <a href="../types/zipfileset.html">&lt;zipfileset&gt;</a> is a <a href="../types/fileset.html">&lt;fileset&gt;</a> with extra attributes useful in the context of the <a href="../tasks/zip.html">&lt;zip&gt;</a> task. </p>
     <h3>Parameters</h3>
     <div class="table">
@@ -188,7 +187,7 @@
                 </h4>
     <h3>Requirements</h3>
     <div style="margin-left: 20px;">
-      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4526.0)
+      <b>Assembly:</b> NAnt.CompressionTasks (0.92.4543.0)
             </div>
   </body>
 </html>
\ No newline at end of file
diff --git a/doc/releasenotes.html b/doc/releasenotes.html
index d4acb85..75c39ec 100644
--- a/doc/releasenotes.html
+++ b/doc/releasenotes.html
@@ -53,6 +53,8 @@
                 </td>
             </tr>
         </table>
+        <h2>0.92 (June 9, 2012)</h2>
+        <h3>No Updates since 0.92-rc1</h3>
         <h2>0.92-rc1 (May 23, 2012)</h2>
         <h3>Breaking changes</h3>
         <h4>Tasks</h4>
diff --git a/examples/StyleTask/SimpleExtensionObject/SimpleExtension.dll b/examples/StyleTask/SimpleExtensionObject/SimpleExtension.dll
new file mode 100644
index 0000000..ad0d4d4
Binary files /dev/null and b/examples/StyleTask/SimpleExtensionObject/SimpleExtension.dll differ
diff --git a/lib/common/2.0/nunit-console-runner.dll b/lib/common/2.0/nunit-console-runner.dll
new file mode 100644
index 0000000..b0e611a
Binary files /dev/null and b/lib/common/2.0/nunit-console-runner.dll differ
diff --git a/lib/common/2.0/nunit-console.exe b/lib/common/2.0/nunit-console.exe
new file mode 100644
index 0000000..0735eef
Binary files /dev/null and b/lib/common/2.0/nunit-console.exe differ
diff --git a/lib/common/2.0/nunit.core.dll b/lib/common/2.0/nunit.core.dll
new file mode 100644
index 0000000..5f748be
Binary files /dev/null and b/lib/common/2.0/nunit.core.dll differ
diff --git a/lib/common/2.0/nunit.core.interfaces.dll b/lib/common/2.0/nunit.core.interfaces.dll
new file mode 100644
index 0000000..72b9486
Binary files /dev/null and b/lib/common/2.0/nunit.core.interfaces.dll differ
diff --git a/lib/common/2.0/nunit.framework.dll b/lib/common/2.0/nunit.framework.dll
new file mode 100644
index 0000000..eaea9ee
Binary files /dev/null and b/lib/common/2.0/nunit.framework.dll differ
diff --git a/lib/common/2.0/nunit.util.dll b/lib/common/2.0/nunit.util.dll
new file mode 100644
index 0000000..28d603c
Binary files /dev/null and b/lib/common/2.0/nunit.util.dll differ
diff --git a/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll b/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll
new file mode 100644
index 0000000..a64360b
Binary files /dev/null and b/lib/common/neutral/ICSharpCode.SharpCvsLib.Console.dll differ
diff --git a/lib/common/neutral/ICSharpCode.SharpCvsLib.dll b/lib/common/neutral/ICSharpCode.SharpCvsLib.dll
new file mode 100644
index 0000000..e2a71cb
Binary files /dev/null and b/lib/common/neutral/ICSharpCode.SharpCvsLib.dll differ
diff --git a/lib/common/neutral/ICSharpCode.SharpZipLib.dll b/lib/common/neutral/ICSharpCode.SharpZipLib.dll
new file mode 100644
index 0000000..60ef0c9
Binary files /dev/null and b/lib/common/neutral/ICSharpCode.SharpZipLib.dll differ
diff --git a/lib/common/neutral/NDoc.Core.dll b/lib/common/neutral/NDoc.Core.dll
new file mode 100644
index 0000000..07fbbe8
Binary files /dev/null and b/lib/common/neutral/NDoc.Core.dll differ
diff --git a/lib/common/neutral/NDoc.Documenter.Msdn.dll b/lib/common/neutral/NDoc.Documenter.Msdn.dll
new file mode 100644
index 0000000..986998c
Binary files /dev/null and b/lib/common/neutral/NDoc.Documenter.Msdn.dll differ
diff --git a/lib/common/neutral/NDoc.ExtendedUI.dll b/lib/common/neutral/NDoc.ExtendedUI.dll
new file mode 100644
index 0000000..bc3d5a4
Binary files /dev/null and b/lib/common/neutral/NDoc.ExtendedUI.dll differ
diff --git a/lib/common/neutral/NUnitCore.dll b/lib/common/neutral/NUnitCore.dll
new file mode 100644
index 0000000..0f1873c
Binary files /dev/null and b/lib/common/neutral/NUnitCore.dll differ
diff --git a/lib/common/neutral/log4net.dll b/lib/common/neutral/log4net.dll
new file mode 100644
index 0000000..20a2e1c
Binary files /dev/null and b/lib/common/neutral/log4net.dll differ
diff --git a/lib/common/neutral/netDumbster.dll b/lib/common/neutral/netDumbster.dll
new file mode 100644
index 0000000..49d7191
Binary files /dev/null and b/lib/common/neutral/netDumbster.dll differ
diff --git a/lib/common/neutral/scvs.exe b/lib/common/neutral/scvs.exe
new file mode 100644
index 0000000..093d36e
Binary files /dev/null and b/lib/common/neutral/scvs.exe differ
diff --git a/src/CommonAssemblyInfo.cs b/src/CommonAssemblyInfo.cs
index e38b8ec..be85e07 100644
--- a/src/CommonAssemblyInfo.cs
+++ b/src/CommonAssemblyInfo.cs
@@ -16,12 +16,12 @@ using System.Runtime.InteropServices;
 [assembly: CLSCompliantAttribute(true)]
 [assembly: AssemblyTitleAttribute("NAnt")]
 [assembly: AssemblyDescriptionAttribute("A .NET Build Tool")]
-[assembly: AssemblyConfigurationAttribute("rc1")]
+[assembly: AssemblyConfigurationAttribute("release")]
 [assembly: AssemblyCompanyAttribute("http://nant.sourceforge.net")]
 [assembly: AssemblyProductAttribute("NAnt")]
 [assembly: AssemblyCopyrightAttribute("Copyright (C) 2001-2012 Gerry Shaw")]
 [assembly: AssemblyTrademarkAttribute("")]
 [assembly: AssemblyCultureAttribute("")]
-[assembly: AssemblyVersionAttribute("0.92.4526.0")]
+[assembly: AssemblyVersionAttribute("0.92.4543.0")]
 [assembly: AssemblyInformationalVersionAttribute("0.92")]