Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0e6d0dc

Browse files
committed
Adds missing file to installer.
1 parent 02d03df commit 0e6d0dc

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Tools/msi/exe/exe_reg.wxs

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3+
<Fragment>
4+
<PropertyRef Id="ROOTREGISTRYKEY" />
5+
<PropertyRef Id="REGISTRYKEY" />
6+
7+
<ComponentGroup Id="exe_reg">
8+
<Component Id="CommonPythonRegistration" Directory="InstallDirectory" Guid="$(var.CommonPythonRegComponentGuid)">
9+
<RegistryKey Root="HKMU" Key="[ROOTREGISTRYKEY]">
10+
<RegistryValue Name="DisplayName" Type="string" Value="!(loc.Manufacturer)" KeyPath="yes" />
11+
<RegistryValue Name="SupportUrl" Type="string" Value="!(loc.ManufacturerSupportUrl)" KeyPath="no" />
12+
</RegistryKey>
13+
</Component>
14+
<Component Id="PythonRegistration" Directory="InstallDirectory" Guid="$(var.PythonRegComponentGuid)">
15+
<RegistryKey Root="HKMU" Key="[REGISTRYKEY]">
16+
<RegistryValue Name="DisplayName" Type="string" Value="!(loc.ShortcutName)" KeyPath="yes" />
17+
<RegistryValue Name="SupportUrl" Type="string" Value="!(loc.SupportUrl)" KeyPath="no" />
18+
<RegistryValue Name="Version" Type="string" Value="$(var.LongVersion)" KeyPath="no" />
19+
<RegistryValue Name="SysVersion" Type="string" Value="$(var.ShortVersion)" KeyPath="no" />
20+
<RegistryValue Name="SysArchitecture" Type="string" Value="$(var.PlatformArchitecture)" KeyPath="no" />
21+
</RegistryKey>
22+
</Component>
23+
</ComponentGroup>
24+
</Fragment>
25+
</Wix>

0 commit comments

Comments
 (0)