statiqdev / Statiq.Docs

A static documentation site generator.
https://statiq.dev/docs
Other
53 stars 8 forks source link

AddAssemblyFiles to populate "API"? #51

Open always-developing opened 2 years ago

always-developing commented 2 years ago

Good day

This is more of a question than an issue - but does Statiq.Docs support populating the "API" section using assemblies (with, or without the xml document files)?

I have a working sample which populates the API section using *.cs files in a "src" folder - that works without any issue. What I'm trying to do is get the same result but not using cs files, but the compiled dlls - is this possible?

I have a "assemblies" folder which contain the dll's at the same level as the "src" and "input" folders, and have added the following to program.cs (following this guide ) but it doesn't seem to do anything with the dlls (or the accompanying XML documentation files)

.AddAssemblyFiles("assemblies/**/*.dll")

Am I on the right track, or am I completely misunderstanding the guide?

Thanks in advance, appreciate it.

JP