diff options
author | Bob Arnson <bob@firegiant.com> | 2024-06-10 18:43:55 -0400 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-06-10 19:59:35 -0400 |
commit | eed1b5bbfb49d2425417bc342ecabe9edc206cdf (patch) | |
tree | 43765e211915264a22124b0e1e86a391051685c3 /src/Directory.Build.props | |
parent | 4946477e98000db6769facea5c1cab8f50386b94 (diff) | |
download | wix-eed1b5bbfb49d2425417bc342ecabe9edc206cdf.tar.gz wix-eed1b5bbfb49d2425417bc342ecabe9edc206cdf.tar.bz2 wix-eed1b5bbfb49d2425417bc342ecabe9edc206cdf.zip |
Build native code with VC v143 toolset only.
v143 output is compatible back to VS2017 (at least).
Fixes https://github.com/wixtoolset/issues/issues/8211.
Diffstat (limited to 'src/Directory.Build.props')
-rw-r--r-- | src/Directory.Build.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Directory.Build.props b/src/Directory.Build.props index b27e35d7..c4e52834 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props | |||
@@ -20,7 +20,7 @@ | |||
20 | <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> | 20 | <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> |
21 | 21 | ||
22 | <!-- This is C++-specific but used from managed projects to pick up native build artifacts. --> | 22 | <!-- This is C++-specific but used from managed projects to pick up native build artifacts. --> |
23 | <WixNativeSdkLibraryToolset>v141</WixNativeSdkLibraryToolset> | 23 | <WixNativeSdkLibraryToolset>v143</WixNativeSdkLibraryToolset> |
24 | <PlatformToolset Condition=" '$(ConfigurationType)' == 'StaticLibrary' ">$(WixNativeSdkLibraryToolset)</PlatformToolset> | 24 | <PlatformToolset Condition=" '$(ConfigurationType)' == 'StaticLibrary' ">$(WixNativeSdkLibraryToolset)</PlatformToolset> |
25 | <PlatformToolset Condition=" '$(PlatformToolset)' == '' ">v143</PlatformToolset> | 25 | <PlatformToolset Condition=" '$(PlatformToolset)' == '' ">v143</PlatformToolset> |
26 | 26 | ||