GUI changes (including menu)

This commit is contained in:
2024-01-10 17:55:54 +01:00
parent 8c043dc18e
commit 8a0232129f
12 changed files with 159 additions and 14 deletions

9
docfx_project/.gitignore vendored Normal file
View File

@@ -0,0 +1,9 @@
###############
# folder #
###############
/**/DROP/
/**/TEMP/
/**/packages/
/**/bin/
/**/obj/
_site

5
docfx_project/api/.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
###############
# temp file #
###############
*.yml
.manifest

View File

@@ -0,0 +1,2 @@
# PLACEHOLDER
TODO: Add .NET projects to the *src* folder and run `docfx` to generate **REAL** *API Documentation*!

View File

@@ -0,0 +1 @@
# Add your introductions here!

View File

@@ -0,0 +1,2 @@
- name: Introduction
href: intro.md

65
docfx_project/docfx.json Normal file
View 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
View 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
View File

@@ -0,0 +1,5 @@
- name: Articles
href: articles/
- name: Api Documentation
href: api/
homepage: api/index.md