0

I am working on a project documentation using NDOC3.

The build fails when trying to document 3rd party DLLs (because I do not have the xml documentation for them). How could I address this issue ?

lkaw
  • 1
  • 1
  • Did you check the Xml Documentation file option at the build options for each project in the solution?? That was the solution in my case. Cheers Andreu –  Jul 20 '10 at 15:51

1 Answers1

0

There's no way of documenting without the 3rd party DLLs, as NDoc loads everything via reflection first, then inspects the XML file to match the types. So it needs all dependencies in order for the reflection loading to be successful.

Chris S
  • 64,770
  • 52
  • 221
  • 239