Skip to content

Commit

Permalink
Fix docfx build
Browse files Browse the repository at this point in the history
Looks like older versions of docfx didn't like .NET Core SDK 3.1 (or
minor updates to it)
  • Loading branch information
jskeet committed Feb 18, 2021
1 parent a574672 commit b4b0375
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion DocfxFunctions.sh
Expand Up @@ -3,9 +3,13 @@

declare -r REPO_ROOT=$(readlink -f $(dirname ${BASH_SOURCE}))
declare -r TOOL_PACKAGES=$REPO_ROOT/packages
declare -r DOCFX_VERSION=2.39.1
declare -r DOCFX_VERSION=2.56.6
declare -r DOCFX=$TOOL_PACKAGES/docfx.$DOCFX_VERSION/docfx.exe

# Appears to fix some issues in docfx.
# Unfortunately docfx is a bit "magical" in that respect :(
export VSINSTALLDIR=

install_docfx() {
if [[ ! -f $DOCFX ]]
then
Expand Down

0 comments on commit b4b0375

Please sign in to comment.