Docfx 不构建和输出其他路径
Docfx not build and output other path
有两个职责;
在第一个问题之前
我的项目层次结构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.jsonconfigration
谢谢
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
它为我们开辟了这条道路。
如果保留docfx的默认输出文件夹_site
,您可以尝试docfx serve ./docs/_site
第一题
有两个职责; 在第一个问题之前
我的项目层次结构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.jsonconfigration
谢谢
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
它为我们开辟了这条道路。
如果保留docfx的默认输出文件夹_site
,您可以尝试docfx serve ./docs/_site
第一题