|
From: Benjamin W. <bw...@co...> - 2006-08-18 16:49:55
|
Hello:
=20
I got NDoc runtime error for the following build file:
=20
<target name=3D"msdndocs" description=3D"Generates MSDN style =
documentation">
<delete dir=3D"docs_msdn"/>
<mkdir dir=3D"docs_msdn"/>
<exec program=3D"ndocconsole.exe" workingdir=3D"${build.dir}">
<arg value=3D"-documenter=3DMSDN"/>
<arg value=3D"-project=3DDocumentation.ndoc"/>
<arg value=3D"-namespacesummaries=3DNamespaceSummaries.xml"/>
<arg value=3D"-OutputDirectory=3Ddocs_msdn"/>
<arg value=3D"-Title Coin Data Product Documentation"/>
<arg value=3D"-HtmlHelpName=3DCoinData"/>
<arg value=3D"-verbose"/>
</exec>
<copy file=3D"./docs_msdn/CoinData.chm" todir=3D"." =
overwrite=3D"true"/>
<delete dir=3D"docs_msdn"/>
</target>
Here is the error log:
=20
Buildfile: file:///C:/CoinData/products/microsoft/build.build =
<file:///C:/CoinData/products/microsoft/build.build>=20
Target framework: Microsoft .NET Framework 2.0
Target(s) specified: document=20
msdndocs:
[exec] NDoc 1.3.1 (Build 1.3.1851.0; release; 1/25/2005)
[exec] http://ndoc.sourceforge.net =
<https://owa.coindata.com/exchweb/bin/redir.asp?URL=3Dhttp://ndoc.sourcef=
orge.net>=20
[exec] using project file Documentation.ndoc
[exec] Error: System.ArgumentException
[exec] Path cannot be the empty string or all whitespace.
[exec] at System.IO.Directory.SetCurrentDirectory(String path)
[exec] at NDoc.ConsoleApplication.EntryPoint.Main(String[] args)
BUILD FAILED
C:\CoinData\products\microsoft\build.build(62,4):
External Program Failed: ndocconsole.exe (return code was 2)
Total time: 4 seconds.
=20
Anyone has a clue why NDoc crashed?
=20
Thanks for help!
|