Set up the initial project structure

This commit is contained in:
Kévin Chalet
2017-09-12 17:46:13 +02:00
commit 18462898ea
7 changed files with 76 additions and 0 deletions

43
docfx.json Normal file
View File

@@ -0,0 +1,43 @@
{
"build": {
"content": [
{
"files": [
"**/*.md",
"**/*.yml"
],
"exclude": [
"obj/**",
"_site/**"
]
}
],
"resource": [
{
"files": [
"**/*.png",
"**/*.jpg",
"**/*.gif",
"**/*.pdf",
"**/*.exe",
"**/*.wmv",
"**/*.zip"
],
"exclude": [
"obj/**",
"_site/**"
]
}
],
"dest": "_site",
"globalMetadataFiles": [],
"fileMetadataFiles": [],
"template": [
"default"
],
"postProcessors": [],
"noLangKeyword": false,
"keepFileLink": false,
"cleanupCacheHistory": false
}
}