GUI changes (including menu)
This commit is contained in:
9
docfx_project/.gitignore
vendored
Normal file
9
docfx_project/.gitignore
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
###############
|
||||
# folder #
|
||||
###############
|
||||
/**/DROP/
|
||||
/**/TEMP/
|
||||
/**/packages/
|
||||
/**/bin/
|
||||
/**/obj/
|
||||
_site
|
||||
5
docfx_project/api/.gitignore
vendored
Normal file
5
docfx_project/api/.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
###############
|
||||
# temp file #
|
||||
###############
|
||||
*.yml
|
||||
.manifest
|
||||
2
docfx_project/api/index.md
Normal file
2
docfx_project/api/index.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# PLACEHOLDER
|
||||
TODO: Add .NET projects to the *src* folder and run `docfx` to generate **REAL** *API Documentation*!
|
||||
1
docfx_project/articles/intro.md
Normal file
1
docfx_project/articles/intro.md
Normal file
@@ -0,0 +1 @@
|
||||
# Add your introductions here!
|
||||
2
docfx_project/articles/toc.yml
Normal file
2
docfx_project/articles/toc.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
- name: Introduction
|
||||
href: intro.md
|
||||
65
docfx_project/docfx.json
Normal file
65
docfx_project/docfx.json
Normal file
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"metadata": [
|
||||
{
|
||||
"src": [
|
||||
{
|
||||
"files": [
|
||||
"*.csproj"
|
||||
],
|
||||
"src" : "../"
|
||||
}
|
||||
],
|
||||
"dest": "api",
|
||||
"disableGitFeatures": true,
|
||||
"disableDefaultFilter": false
|
||||
}
|
||||
],
|
||||
"build": {
|
||||
"content": [
|
||||
{
|
||||
"files": [
|
||||
"api/**.yml",
|
||||
"api/index.md"
|
||||
]
|
||||
},
|
||||
{
|
||||
"files": [
|
||||
"articles/**.md",
|
||||
"articles/**/toc.yml",
|
||||
"toc.yml",
|
||||
"*.md"
|
||||
]
|
||||
}
|
||||
],
|
||||
"resource": [
|
||||
{
|
||||
"files": [
|
||||
"images/**"
|
||||
]
|
||||
}
|
||||
],
|
||||
"overwrite": [
|
||||
{
|
||||
"files": [
|
||||
"apidoc/**.md"
|
||||
],
|
||||
"exclude": [
|
||||
"obj/**",
|
||||
"_site/**"
|
||||
]
|
||||
}
|
||||
],
|
||||
"dest": "_site",
|
||||
"globalMetadataFiles": [],
|
||||
"fileMetadataFiles": [],
|
||||
"template": [
|
||||
"modern"
|
||||
],
|
||||
"postProcessors": [],
|
||||
"markdownEngineName": "markdig",
|
||||
"noLangKeyword": false,
|
||||
"keepFileLink": false,
|
||||
"cleanupCacheHistory": false,
|
||||
"disableGitFeatures": false
|
||||
}
|
||||
}
|
||||
4
docfx_project/index.md
Normal file
4
docfx_project/index.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# This is the **HOMEPAGE**.
|
||||
Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files.
|
||||
## Quick Start Notes:
|
||||
1. Add images to the *images* folder if the file is referencing an image.
|
||||
5
docfx_project/toc.yml
Normal file
5
docfx_project/toc.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
- name: Articles
|
||||
href: articles/
|
||||
- name: Api Documentation
|
||||
href: api/
|
||||
homepage: api/index.md
|
||||
Reference in New Issue
Block a user