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.Build.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.Build.props')
-rw-r--r-- | src/Directory.Build.props | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 8969b436..da099c3d 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props | |||
@@ -17,6 +17,11 @@ | |||
17 | <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(ProjectName)\</BaseIntermediateOutputPath> | 17 | <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(ProjectName)\</BaseIntermediateOutputPath> |
18 | <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> | 18 | <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> |
19 | 19 | ||
20 | <!-- This is C++-specific but used from managed projects to pick up native build artifacts. --> | ||
21 | <WixNativeSdkLibraryToolset>v141</WixNativeSdkLibraryToolset> | ||
22 | <PlatformToolset Condition=" '$(ConfigurationType)' == 'StaticLibrary' ">$(WixNativeSdkLibraryToolset)</PlatformToolset> | ||
23 | <PlatformToolset Condition=" '$(PlatformToolset)' == '' ">v143</PlatformToolset> | ||
24 | |||
20 | <Authors>WiX Toolset Team</Authors> | 25 | <Authors>WiX Toolset Team</Authors> |
21 | <Company>WiX Toolset</Company> | 26 | <Company>WiX Toolset</Company> |
22 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> | 27 | <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> |