Initial docfx documentation placeholder files (#194)

This is documentation changes only so I'm just going to merge directly.  The PR is for FYI purposes.   Please leave feedback on the commit if you see anything I should follow-up on with this documentation.
This commit is contained in:
Karl Burtram
2016-12-16 12:11:27 -08:00
committed by GitHub
parent 319c5ef7ed
commit 4964a52be5
16 changed files with 703 additions and 0 deletions

69
docs/docfx.json Normal file
View File

@@ -0,0 +1,69 @@
{
"metadata": [
{
"src": [
{
"files": [ "**/project.json" ],
"cwd": "../src/Microsoft.SqlTools.ServiceLayer",
"exclude": [ "**/obj/**", "**/bin/**" ]
}
],
"dest": "metadata/api"
}
],
"build": {
"content": [
{
"cwd": "metadata/api",
"files": [
"**/**.yml"
],
"dest": "api"
},
{
"cwd": "../",
"files": [
"CONTRIBUTING.md",
"CHANGELOG.md"
]
},
{
"cwd": ".",
"files": [
"toc.yml",
"index.md",
"api/index.md",
"guide/**.md"
],
"exclude": [
"metadata/**",
"_site/**"
]
}
],
"resource": [
{
"files": [
"images/**"
],
"exclude": [
"obj/**",
"_site/**"
]
}
],
"overwrite": [
{
"files": [
"apidoc/**.md"
],
"exclude": [
"obj/**",
"_site/**"
]
}
],
"dest": "_site",
"template": [ "default", "template" ]
}
}