【发布时间】:2017-12-18 09:24:06
【问题描述】:
有两个职责; 在第一个问题之前
我的项目层次结构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
它为我们创造了这条道路。
【问题讨论】:
标签: .net visual-studio .net-core documentation-generation docfx