summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2019-08-29 17:44:16 +0200
committerXavi Artigas <xavierartigas@yahoo.es>2019-08-29 17:44:16 +0200
commit26e55458ad1b97e7527e2ef156ebd120912e765d (patch)
treef9bd7dbe43ff60c8e144b4694c592b791c9fb8fa /doc
parent9e0a285eea9753ed8f6999c1813d43724faf0c31 (diff)
downloadefl-26e55458ad1b97e7527e2ef156ebd120912e765d.tar.gz
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).
Diffstat (limited to 'doc')
-rw-r--r--doc/docfx/docfx.json1
-rwxr-xr-xdoc/docfx/setup.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/doc/docfx/docfx.json b/doc/docfx/docfx.json
index b5354679eb..309d3d1d8e 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 b166516fd5..77484f2c10 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