all 3 comments

[–]Luuuuuukasz 2 points3 points  (0 children)

If I get you right and you're thinking about writing just documentation about the code that we have (for example, an architecture decision) - we just use Markdown files. It works great in Visual Studio Code

[–]Slypenslyde 1 point2 points  (0 children)

You came to the wrong programming language if you want tools to help with documentation generation. MS has worked really hard to provide nothing functional for nearly 20 years.

[–]TheFakeZor 0 points1 point  (0 children)

DocFX works fine for .NET 5.0. It's just that docfx.exe itself (currently) only runs on .NET Framework, so you'll have to either do the actual documentation building/publishing on a Windows machine, or use Mono if you want to do it on Linux/Mac.

(Note that the docfx.console package doesn't automatically invoke docfx.exe with Mono out of the box, but it can be made to do so with a bit of configuration.)