Whatever happened to dotnet build integration? docfx.console? #8415
-
I've got a few old-ish open source .NET projects which generated their documentation as part of the build process via the I took some time off open source development (around 6-9 months) but I've come back to them and oddly this mechanism is no longer working. I had presumed that this might be because the CI environments had upgraded to .NET 7 and yet I'd left the docfx.console package at a lower version (2.58.9 fwiw). I added a What's more, I went to the current DocFX documentation and there's no mention of building the docs this way anymore ( Any insights? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The
Quick Start suggests installing the latest |
Beta Was this translation helpful? Give feedback.
-
After struggling with this myself, I wrote up how I did this here: #8605 |
Beta Was this translation helpful? Give feedback.
The
docfx.console
package is no longer produced. There are instead:docfx
tool, or you could make your continuous-integration build script run first MSBuild and then separately thedocfx
tool.Quick Start suggests installing the latest
docfx
as a global tool, but I prefer insta…