0

有两个职责;在第一个问题之前

我的项目层次结构

我想为每个项目代码记录我使用docfx的文档。第一个问题;我不希望重建建筑代码。前任。

docfx ./docs/docfx.json --serve -> doing the build

第二个问题;我想要文档结果给我另一条路。前任。

C:\Users\ahmet\Documentation

代码

docfx docfx ./docs/docfx.json -o -C:\Users\ahmet\Documentation > not working

和我的 docfx.json配置

谢谢

如果要生成文档不同的输出路径,则解决 2 个问题。

docfx init

_site in place of, output path as C:/Users/AhmetPC/Desktop/SourceCode

或这个 docfx.exe docfx.json -o C:/Users/AhmetPC/Desktop/SourceCode

它为我们创造了这条道路。

4

1 回答 1

0

如果您保留_sitedocfx的默认输出文件夹,您可以尝试docfx serve ./docs/_site第一个问题。

于 2018-03-07T14:57:20.650 回答