diff options
author | Steve Dower <steve.dower@microsoft.com> | 2017-11-04 23:28:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-04 23:28:47 (GMT) |
commit | 0d2a9088d16826343344b04461c8be44b4008710 (patch) | |
tree | f956ba2cf4b76578bf98cfcb6537bbd1aa88dca9 /PCbuild/python.props | |
parent | aafece7a9e010075fff4420cfbb16f1ec0342698 (diff) | |
download | cpython-0d2a9088d16826343344b04461c8be44b4008710.zip cpython-0d2a9088d16826343344b04461c8be44b4008710.tar.gz cpython-0d2a9088d16826343344b04461c8be44b4008710.tar.bz2 |
bpo-31944: Fixes build and Modify button (#4278)
Diffstat (limited to 'PCbuild/python.props')
-rw-r--r-- | PCbuild/python.props | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/python.props b/PCbuild/python.props index 32c12fa..2d48ed1 100644 --- a/PCbuild/python.props +++ b/PCbuild/python.props @@ -73,8 +73,8 @@ possible version). Since we limit WINVER to Windows 7 anyway, it doesn't really matter which WinSDK version we use. --> - <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.15063'">10.0.15063.0</DefaultWindowsSDKVersion> - <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.15063'">10.0.15063.0</DefaultWindowsSDKVersion> + <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) >= '10.0.15063'">10.0.15063.0</DefaultWindowsSDKVersion> + <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) >= '10.0.15063'">10.0.15063.0</DefaultWindowsSDKVersion> <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.14393'">10.0.14393.0</DefaultWindowsSDKVersion> <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.14393'">10.0.14393.0</DefaultWindowsSDKVersion> <DefaultWindowsSDKVersion Condition="$(Registry:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0@ProductVersion) == '10.0.10586'">10.0.10586.0</DefaultWindowsSDKVersion> |