From 994a0f5f48b5897f144015c069790fbdaa412370 Mon Sep 17 00:00:00 2001 From: Charles Munson Date: Sun, 11 Mar 2018 17:14:41 -0400 Subject: [PATCH] Default to Windows 8.1 toolset v140 for builds --- build-dokany.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-dokany.bat b/build-dokany.bat index 4ad5d305..3fc6014b 100644 --- a/build-dokany.bat +++ b/build-dokany.bat @@ -93,9 +93,9 @@ echo ================================================== echo BUILDING DOKANY LIBRARIES echo ================================================== if defined USE_LEGACY_DOKAN ( - msbuild dokan.sln /p:PlatformToolset=v140 /p:ForceImportBeforeCppTargets="%DEPS_DIR%\dokan-legacy.props" /p:Configuration=Release /p:Platform=Win32 /t:Clean,Build + msbuild dokan.sln /p:WindowsTargetPlatformVersion=8.1 /p:PlatformToolset=v140 /p:ForceImportBeforeCppTargets="%DEPS_DIR%\dokan-legacy.props" /p:Configuration=Release /p:Platform=Win32 /t:Clean,Build ) else ( - msbuild dokan.sln /p:Configuration=Release /p:Platform=Win32 /t:Clean,Build + msbuild dokan.sln /p:WindowsTargetPlatformVersion=8.1 /p:PlatformToolset=v140 /p:Configuration=Release /p:Platform=Win32 /t:Clean,Build ) REM verify necessary libraries were successfully built