diff options
author | Bob Arnson <bob@firegiant.com> | 2021-12-12 23:26:03 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2021-12-25 20:31:10 -0500 |
commit | 5bb1c768a8124505c87fc1db3f702675b50d54ab (patch) | |
tree | 6920f1ba06ed74ec5e464d7a4b615df81b679ce7 /src/Directory.vcxproj.props | |
parent | 667ee81ee0263314b4546f5598efc66fe84c08b7 (diff) | |
download | wix-5bb1c768a8124505c87fc1db3f702675b50d54ab.tar.gz wix-5bb1c768a8124505c87fc1db3f702675b50d54ab.tar.bz2 wix-5bb1c768a8124505c87fc1db3f702675b50d54ab.zip |
Use `v143` toolset except `v141` for libs.
Diffstat (limited to 'src/Directory.vcxproj.props')
-rw-r--r-- | src/Directory.vcxproj.props | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Directory.vcxproj.props b/src/Directory.vcxproj.props index 3cd406e4..0efe2cbb 100644 --- a/src/Directory.vcxproj.props +++ b/src/Directory.vcxproj.props | |||
@@ -8,7 +8,11 @@ | |||
8 | <PlatformFolder Condition=" '$(PlatformFolder)' == '' ">$(Platform)</PlatformFolder> | 8 | <PlatformFolder Condition=" '$(PlatformFolder)' == '' ">$(Platform)</PlatformFolder> |
9 | <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(PlatformFolder)\</IntDir> | 9 | <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(PlatformFolder)\</IntDir> |
10 | <OutDir>$(OutputPath)$(PlatformFolder)\</OutDir> | 10 | <OutDir>$(OutputPath)$(PlatformFolder)\</OutDir> |
11 | <PlatformToolset>v143</PlatformToolset> | 11 | </PropertyGroup> |
12 | |||
13 | <!-- This is needed for v141 toolset, which doesn't understand `10.0` --> | ||
14 | <PropertyGroup Condition="'$(WindowsTargetPlatformVersion)'==''"> | ||
15 | <WindowsTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</WindowsTargetPlatformVersion> | ||
12 | </PropertyGroup> | 16 | </PropertyGroup> |
13 | 17 | ||
14 | <PropertyGroup Condition=" '$(CLRSupport)'!='true' "> | 18 | <PropertyGroup Condition=" '$(CLRSupport)'!='true' "> |