Hi all Could someone please advise me on the <namespaces> tags in the NDOC task? I copied the example code for the NDOC task from the Nant documentation to my project and it results in excellent documentation files, but the namespace summary is indicated as missing. /* Obviously, because namespace summaries are not implemented in the C# compiler ;-( */ As NDOC overcomes this limitation, I studied their project file format and I simply copied NDOC's <namespaces> tag to my Nant build file as illustrated below, but the namespace summary remains missing from the *.chm file when I build from Nant.
Is the <namespaces> tag implemented in Nant? Thanks Willem Semmelink <ndoc failonerror="false" > <assemblies basedir="./doc" > <includes name="${projName}.${targetExt}" /> <!-- targetExt can be DLL or EXE --> </assemblies> <summaries basedir="./doc" > <includes name="${projName}.xml" /> </summaries> <namespaces> <!-- My namespace has same name as my *.dll --> <namespace name="${projName}">This is my namespace comments</namespace> </namespaces> <documenters> <documenter name="MSDN"> <property name="OutputDirectory" value="doc\MSDN" /> <property name="HtmlHelpName" value="${projName}" /> <property name="HtmlHelpCompilerFilename" value="hhc.exe" /> <property name="IncludeFavorites" value="False" /> <property name="Title" value="Documentation for ${projName}" /> <property name="SplitTOCs" value="False" /> <property name="DefaulTOC" value="True" /> <property name="ShowVisualBasic" value="False" /> <property name="ShowMissingSummaries" value="True" /> <property name="ShowMissingRemarks" value="True" /> <property name="ShowMissingParams" value="True" /> <property name="ShowMissingReturns" value="True" /> <property name="ShowMissingValues" value="True" /> <property name="DocumentInternals" value="False" /> <property name="DocumentProtected" value="True" /> <property name="DocumentPrivates" value="False" /> <property name="DocumentEmptyNamespaces" value="False" /> <property name="IncludeAssemblyVersion" value="False" /> <property name="CopyrightText" value="COMPANY CONFIDENTIAL (c) ....bla bla bla ...." /> <property name="CopyrightHref" value="" /> </documenter> </documenters> </ndoc> ------------------------------------------------------- This SF.net email is sponsored by: VM Ware With VMware you can run multiple operating systems on a single machine. WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0 _______________________________________________ Nant-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-users