有两个责任; 在第一个问题之前
我的项目层次结构this
我希望每个项目代码都能使用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 configration
由于
解决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
它为我们创造了这条道路。
答案 0 :(得分:0)
如果您保留docfx的默认输出文件夹_site
,则可以针对第一个问题尝试docfx serve ./docs/_site
。