Browse Source

Add 'View Source' button

+ This change requires us to target the solution.
+ Due to docfx issues, we must specify a  upon metadata compilation.
    - Because of this, docfx may complain about missing targets.
    - If we don't target a specific TargetFramework, docfx will fail to recognize documents with multiple framework targets.
    - Further investigation may be required.
pull/988/head
Hsu Still 7 years ago
parent
commit
6f4a4e069b
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      docs/docfx.json

+ 6
- 4
docs/docfx.json View File

@@ -5,17 +5,19 @@
{ {
"src": "..", "src": "..",
"files": [ "files": [
"src/**/*.cs"
"*.sln"
], ],
"exclude": [ "exclude": [
"**/obj/**", "**/obj/**",
"**/bin/**",
"_site/**"
"**/bin/**"
] ]
} }
], ],
"dest": "api", "dest": "api",
"filter": "filterConfig.yml"
"filter": "filterConfig.yml",
"properties":{
"TargetFramework": "netstandard1.1"
}
} }
], ],
"build": { "build": {


Loading…
Cancel
Save