|
From: <te...@us...> - 2009-07-16 08:29:57
|
Revision: 4642
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4642&view=rev
Author: tehlike
Date: 2009-07-16 08:29:56 +0000 (Thu, 16 Jul 2009)
Log Message:
-----------
Making it possible to skip manual, as it needs external dependency.
Modified Paths:
--------------
trunk/nhibernate/default.build
trunk/nhibernate/teamcity.build
Modified: trunk/nhibernate/default.build
===================================================================
--- trunk/nhibernate/default.build 2009-07-15 22:43:58 UTC (rev 4641)
+++ trunk/nhibernate/default.build 2009-07-16 08:29:56 UTC (rev 4642)
@@ -11,7 +11,7 @@
<!-- Pass -D:skip.tests=true to NAnt to skip running tests when building -->
<property name="skip.tests" value="false" overwrite="false" />
-
+ <property name="skip.manual" value="false" overwrite="false" />
<!--
Supported versions of .NET Framework, separated by spaces.
Used by *-all-frameworks targets.
@@ -152,14 +152,14 @@
<nant buildfile="doc/documentation.build" target="api manual" />
</target>
- <target name="reference" depends="init binaries"
+ <target name="reference" depends="init binaries" unless="${skip.manual}"
description="Builds Reference Manual">
<nant buildfile="doc/documentation.build" target="manual" />
</target>
- <target name="reference-zip" depends="init binaries"
+ <target name="reference-zip" depends="init binaries" unless="${skip.manual}"
description="Builds Reference Manual zip">
- <nant buildfile="doc/documentation.build" target="manual-zip" />
+ <nant buildfile="doc/documentation.build" target="manual-zip"/>
</target>
<target name="api" depends="init binaries"
Modified: trunk/nhibernate/teamcity.build
===================================================================
--- trunk/nhibernate/teamcity.build 2009-07-15 22:43:58 UTC (rev 4641)
+++ trunk/nhibernate/teamcity.build 2009-07-16 08:29:56 UTC (rev 4642)
@@ -8,7 +8,7 @@
<property name="build.number" value="${CCNetLabel}" if="${property::exists('CCNetLabel')}" />
- <target name="clean-configure-test" depends="cleanall init copy-teamcity-configuration build test">
+ <target name="clean-configure-test" depends="cleanall init copy-teamcity-configuration package">
</target>
<target name="copy-teamcity-configuration">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|