From 6f4a4e069b1184cc879301a848fad9d1ef5a476b Mon Sep 17 00:00:00 2001 From: Hsu Still <341464@gmail.com> Date: Mon, 26 Mar 2018 11:48:50 +0800 Subject: [PATCH] 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. --- docs/docfx.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/docfx.json b/docs/docfx.json index 901357ae3..a41db4fb6 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -5,17 +5,19 @@ { "src": "..", "files": [ - "src/**/*.cs" + "*.sln" ], "exclude": [ "**/obj/**", - "**/bin/**", - "_site/**" + "**/bin/**" ] } ], "dest": "api", - "filter": "filterConfig.yml" + "filter": "filterConfig.yml", + "properties":{ + "TargetFramework": "netstandard1.1" + } } ], "build": {