From: Xavi Artigas Date: Thu, 29 Aug 2019 15:44:16 +0000 (+0200) Subject: mono-docs: Update DocFX version and use online symbol lookup X-Git-Tag: submit/tizen/20190916.075039~204 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=adfdc1b13aaaacf4f24fd9d27472539d64504005;p=platform%2Fupstream%2Fefl.git mono-docs: Update DocFX version and use online symbol lookup Version 2.45 of DocFX seems much much faster than previous 2.40, but could just be a matter of stale caches. Anyway, no breakages have been detected. Using an online symbol resolution server (https://xref.docs.microsoft.com) adds some more links for .NET symbols (and no noticeable slowdown). --- diff --git a/doc/docfx/docfx.json b/doc/docfx/docfx.json index b535467..309d3d1 100644 --- a/doc/docfx/docfx.json +++ b/doc/docfx/docfx.json @@ -16,6 +16,7 @@ } ], "build": { + "xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ], "content": [ { "files": [ diff --git a/doc/docfx/setup.sh b/doc/docfx/setup.sh index b166516..77484f2 100755 --- a/doc/docfx/setup.sh +++ b/doc/docfx/setup.sh @@ -25,7 +25,7 @@ fi; # if [ ! -d "bin" ]; then rm -rf docfx.zip bin - wget https://github.com/dotnet/docfx/releases/download/v2.40.4/docfx.zip + wget https://github.com/dotnet/docfx/releases/download/v2.45/docfx.zip unzip -q docfx.zip -d bin rm docfx.zip else