From d1ff40bccad3083b606a759c91c24b64a0e2ba76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 1 Sep 2016 07:21:19 +0200 Subject: [PATCH] Update SharpFont to version 4.0.1 --- thirdparty/fetch-thirdparty-deps.ps1 | 4 ++-- thirdparty/fetch-thirdparty-deps.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/thirdparty/fetch-thirdparty-deps.ps1 b/thirdparty/fetch-thirdparty-deps.ps1 index eec48b95ae..d06a114070 100644 --- a/thirdparty/fetch-thirdparty-deps.ps1 +++ b/thirdparty/fetch-thirdparty-deps.ps1 @@ -50,8 +50,8 @@ if (!(Test-Path "MaxMind.GeoIP2.dll")) if (!(Test-Path "SharpFont.dll")) { echo "Fetching SharpFont from NuGet." - ./nuget.exe install SharpFont -Version 3.1.0 -ExcludeVersion - cp SharpFont/lib/net20/SharpFont* . + ./nuget.exe install SharpFont -Version 4.0.1 -ExcludeVersion + cp SharpFont/lib/net45/SharpFont* . cp SharpFont/config/SharpFont.dll.config . rmdir SharpFont -Recurse rmdir SharpFont.Dependencies -Recurse diff --git a/thirdparty/fetch-thirdparty-deps.sh b/thirdparty/fetch-thirdparty-deps.sh index 9168344a72..c9d696cffd 100755 --- a/thirdparty/fetch-thirdparty-deps.sh +++ b/thirdparty/fetch-thirdparty-deps.sh @@ -62,8 +62,8 @@ fi if [ ! -f SharpFont.dll ]; then echo "Fetching SharpFont from NuGet" - get SharpFont 3.1.0 - cp ./SharpFont/lib/net20/SharpFont* . + get SharpFont 4.0.1 + cp ./SharpFont/lib/net45/SharpFont* . cp ./SharpFont/config/SharpFont.dll.config . rm -rf SharpFont SharpFont.Dependencies fi