generate sdk docs using NDoc3 beta3

This commit is contained in:
eeichinger
2009-05-10 08:30:04 +00:00
parent fe28e6d0ab
commit ca9f8689d3
14 changed files with 9 additions and 9 deletions

View File

@@ -725,8 +725,13 @@ Build properties that may be set:
<arg value="-project=./doc/sdk/Spring.NET-net-2.0.ndoc" />
</exec>
<!-- copy sdk docs -->
<copy todir="./doc/sdk/target/html">
<!-- copy sdk docs to final destination -->
<move todir="./doc/sdk/target/htmlhelp" overwrite="true">
<fileset basedir="./doc/sdk/target/tmp/">
<include name="*.chm"/>
</fileset>
</move>
<move todir="./doc/sdk/target/html" overwrite="true">
<fileset basedir="./doc/sdk/target/tmp/">
<include name="**/*"/>
<exclude name="*.chw" />
@@ -736,15 +741,10 @@ Build properties that may be set:
<exclude name="*.chm" />
<exclude name="ndoc3_msdn_temp" />
</fileset>
</copy>
<copy todir="./doc/sdk/target/htmlhelp">
<fileset basedir="./doc/sdk/target/tmp/">
<include name="*.chm"/>
</fileset>
</copy>
</move>
<!-- clean tmp dir -->
<delete dir="./doc/sdk/target/tmp" failonerror="false" />
<!-- delete dir="./doc/sdk/target/tmp" failonerror="false" / -->
</target>