This commit is contained in:
equinox2k 2019-02-15 06:56:22 -08:00
Родитель 2e593175e6
Коммит 6dda225286
10 изменённых файлов: 58 добавлений и 1262 удалений

2
docs/.gitignore поставляемый
Просмотреть файл

@ -1,3 +1,3 @@
bin/
obj/
site/
_site/

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

Просмотреть файл

2
docs/api2/.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1,2 @@
.manifest
*.yml

3
docs/api2/index.md Normal file
Просмотреть файл

@ -0,0 +1,3 @@
API Documentation
The API documentation is automatically generated from source-code-level comments. Often, more information can be found by looking into the source code itself.

Просмотреть файл

@ -4,17 +4,35 @@
"src": [
{
"files": [
"src/EquinoxLabs.SVGSharpie/EquinoxLabs.SVGSharpie.csproj",
"src/EquinoxLabs.SVGSharpie.ImageSharp/EquinoxLabs.SVGSharpie.ImageSharp.csproj"
"src/EquinoxLabs.SVGSharpie/EquinoxLabs.SVGSharpie.csproj"
],
"exclude": [
"obj/**",
"site/**"
"_site/**"
],
"cwd": ".."
}
],
"dest": "api",
"dest": "api1",
"properties":
{
"TargetFramework": "netstandard1.3"
}
},
{
"src": [
{
"files": [
"src/EquinoxLabs.SVGSharpie.ImageSharp/EquinoxLabs.SVGSharpie.ImageSharp.csproj"
],
"exclude": [
"obj/**",
"_site/**"
],
"cwd": ".."
}
],
"dest": "api2",
"properties":
{
"TargetFramework": "netstandard1.3"
@ -25,14 +43,33 @@
"content": [
{
"files": [
"api/**.yml",
"api/*.md",
"api/toc.yml"
"api1/**.yml",
"api1/*.md",
"api1/toc.yml"
],
"exclude": [
"obj/**",
"_site/**"
]
},
{
"files": [
"api2/**.yml",
"api2/*.md",
"api2/toc.yml"
],
"exclude": [
"obj/**",
"_site/**"
]
},
{
"files": [
"fusion/*.yml"
],
"exclude": [
"obj/**",
"_site/**"
]
},
{
@ -42,11 +79,11 @@
],
"exclude": [
"obj/**",
"site/**"
"_site/**"
]
}
],
"dest": "site",
"dest": "_site",
"globalMetadataFiles": [],
"fileMetadataFiles": [],
"template": [

Просмотреть файл

@ -1,6 +1,7 @@
### YamlMime:TableOfContent
- name: SVGSharpie
href: ../api/toc.yml
href: ../api1/toc.yml
homepage: ../api1/index.md
- name: SVGSharpie.ImageSharp
href: ../api/toc.yml
homepage: ../api/index.md
href: ../api2/toc.yml
homepage: ../api2/index.md

Просмотреть файл

@ -1,3 +1,3 @@
Welcome to Equinox Labs documentation
[API Documentation](/api/EquinoxLabs.SVGSharpie.html)
[API Documentation](/api1/EquinoxLabs.SVGSharpie.html)

Просмотреть файл

@ -21,7 +21,7 @@ cd $TEMP_REPO_DIR
git rm -r *
echo "Copy documentation into the repo"
cp -r $SOURCE_DIR/docs/site/* .
cp -r $SOURCE_DIR/docs/_site/* .
echo "Push the new docs to the remote branch"
git add . -A