Skip to content

Commit 002b036

Browse files
committed
Making progress, only 1 wix error this time
error WIX0012: The Property/@id attribute's value, 'py_installpath', cannot contain lowercase characters. Since this is a search property, it must also be a public property. This means the Property/@id value must be completely uppercase. Issue #19
1 parent bbf8fb3 commit 002b036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Packaging/Windows/MSI/Package.wxs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
</Property>
9292

9393

94-
<Property Id="py_installpath">
94+
<Property Id="PY_INSTALLPATH">
9595
<RegistrySearch Id="hkcu_py39_path" Root="HKCU" Key="Software\Python\PythonCore\3.9\InstalledPath" Type="directory" />
9696
<RegistrySearch Id="hklm_py39_path" Root="HKLM" Key="Software\Python\PythonCore\3.9\InstalledPath" Type="directory" />
9797
<RegistrySearch Id="hkcu_py310_path" Root="HKCU" Key="Software\Python\PythonCore\3.10\InstalledPath" Type="directory" />
@@ -106,7 +106,7 @@
106106

107107

108108
<Property Id="tdtinstalled">
109-
<DirectorySearch Id="py_installpath" Path="py_installpath">
109+
<DirectorySearch Id="py_installpath" Path="PY_INSTALLPATH">
110110
<DirectorySearch Id="py_lib" Path="Lib">
111111
<DirectorySearch Id="py_site_packages" Path="site-packages">
112112
<DirectorySearch Id="py_dist_info" Path="testdatatable-0.3.0.dist-info">

0 commit comments

Comments
 (0)