diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-07-25 01:04:29 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-07-25 01:04:29 (GMT) |
commit | 05338267ab75c0a0948049280da0224ecc2fb7dc (patch) | |
tree | d9c09b0986a40126fba69293675c361e994bb7e4 /Tools/msi/common.wxs | |
parent | 95f7b9fcaca03d442aa2f26fd79f093cbcbc7003 (diff) | |
download | cpython-05338267ab75c0a0948049280da0224ecc2fb7dc.zip cpython-05338267ab75c0a0948049280da0224ecc2fb7dc.tar.gz cpython-05338267ab75c0a0948049280da0224ecc2fb7dc.tar.bz2 |
Issue #27610: Adds PEP 514 metadata to Windows installer
Diffstat (limited to 'Tools/msi/common.wxs')
-rw-r--r-- | Tools/msi/common.wxs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/msi/common.wxs b/Tools/msi/common.wxs index 4efad65..dd41ce8 100644 --- a/Tools/msi/common.wxs +++ b/Tools/msi/common.wxs @@ -1,6 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <Fragment> + <Property Id="ROOTREGISTRYKEY" Value="Software\Python\PythonCore" /> + </Fragment> + + <Fragment> <Property Id="REGISTRYKEY" Value="Software\Python\PythonCore\$(var.ShortVersion)$(var.PyArchExt)$(var.PyTestExt)" /> </Fragment> |