This is an automated email from the ASF dual-hosted git repository. shazwazza pushed a commit to branch docs-poc in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 1bb9acb53bd893c93788eec89bf90225ef1b1c74 Author: Shannon <[email protected]> AuthorDate: Thu Jun 18 13:09:15 2020 +1000 analysis common package docs now working --- websites/apidocs/docfx.analysis-common.json | 72 ++++++++++++++++++++++++++++ websites/apidocs/docfx.site.json | 4 +- websites/apidocs/toc/analysis-common/toc.yml | 3 ++ 3 files changed, 78 insertions(+), 1 deletion(-) diff --git a/websites/apidocs/docfx.analysis-common.json b/websites/apidocs/docfx.analysis-common.json new file mode 100644 index 0000000..2433885 --- /dev/null +++ b/websites/apidocs/docfx.analysis-common.json @@ -0,0 +1,72 @@ +{ + "metadata": [ + { + "src": [ + { + "files": [ + "Lucene.Net.Analysis.Common/Lucene.Net.Analysis.Common.csproj" + ], + "exclude": [ + "**/obj/**", + "**/bin/**" + ], + "src": "../../src" + } + ], + "dest": "obj/docfx/api/analysis-common", + "properties": { + "TargetFramework": "netstandard2.0" + } + } + ], + "build": { + "content": [ + { + "files": [ + "overview.md" + ], + "src": "../../src/Lucene.Net.Analysis.Common" + }, + { + "files": [ + "**.yml", + "**.md" + ], + "src": "obj/docfx/api/analysis-common" + }, + { + "files": [ + "toc.yml", + "analysis-common/toc.yml" + ], + "src": "toc" + } + ], + "overwrite": [ + { + "files": [ + "apiSpec/analysis-common/**/*.md" + ] + } + ], + "xref": [ + "_site/api/core/xrefmap.yml" + ], + "dest": "_site/api/analysis-common", + "globalMetadataFiles": [ + "docfx.global.json", + "docfx.global.subsite.json" + ], + "template": [ + "Templates/DefaultTemplateNoAssets", + "Templates/LuceneTemplate", + "Templates/LuceneApiDocs" + ], + "postProcessors": [], + "markdownEngineName": "dfm", + "noLangKeyword": false, + "keepFileLink": false, + "cleanupCacheHistory": false, + "disableGitFeatures": false + } +} \ No newline at end of file diff --git a/websites/apidocs/docfx.site.json b/websites/apidocs/docfx.site.json index 712433e..e2c4b24 100644 --- a/websites/apidocs/docfx.site.json +++ b/websites/apidocs/docfx.site.json @@ -20,7 +20,9 @@ } ], "xref": [ - "_site/api/core/xrefmap.yml" + "_site/api/core/xrefmap.yml", + "_site/api/analysis-common/xrefmap.yml", + "_site/api/test-framework/xrefmap.yml" ], "dest": "_site", "globalMetadataFiles": ["docfx.global.json"], diff --git a/websites/apidocs/toc/analysis-common/toc.yml b/websites/apidocs/toc/analysis-common/toc.yml new file mode 100644 index 0000000..5b7a202 --- /dev/null +++ b/websites/apidocs/toc/analysis-common/toc.yml @@ -0,0 +1,3 @@ +- name: Analysis Common + href: ../../obj/docfx/api/analysis-common/toc.yml + topicUid: Lucene.Net.Analysis.Common \ No newline at end of file
