Version: 1.3.1
Framework: MS 1.1
Documentor: MSDN
I am not using VS to compile the application or generate
a solution file, instead I am using an open source IDE
and NANT to manage my code. Using NDOC when I
import my assembly and generate the documentation it
appears to work fine, but as expected, it only provides
the most limited information -- basically, it ingores any
of the xml comment tags.
Understanding this would happen, I added a path
reference to the XML documentation I generate at build
time. When trying to build the documentation with an
XML file I get the following errror:
n error occured while trying to build the documentation.
Exception: NDoc.Core.DocumenterException
There are no documentable types in this project.
Any types that exist in the assemblies you are
documenting have been excluded by the current visibility
settings.
For example, you are attempting to document an
internal class, but the 'DocumentInternals' visibility
setting is set to False.
Note: C# defaults to 'internal' if no accessibilty is
specified, which is often the case for Console apps
created in VS.NET...
Exception: NDoc.Core.DocumenterException
There are no documentable types in this project.
Any types that exist in the assemblies you are
documenting have been excluded by the current visibility
settings.
For example, you are attempting to document an
internal class, but the 'DocumentInternals' visibility
setting is set to False.
Note: C# defaults to 'internal' if no accessibilty is
specified, which is often the case for Console apps
created in VS.NET...
I have tried to change visibility settings, but I still get the
same error.
Any idea what I am doing wrong or should do differently.
Thanks
Corey