Skip to content

Commit 26901a2

Browse files
committed
Error WIX0044
error WIX0044: The ExePackage element's Name or SourceFile attribute was not found; Issue #19
1 parent 31bec90 commit 26901a2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Packaging/Windows/MSI/Package.wxs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Version="0.3.0">
1313
<Chain>
1414
<!-- Install Prerequsites -->
15-
<PackageGroupRef Id="Python_3.13"/>
15+
<PackageGroupRef Id="Python_3x"/>
1616

1717
<!-- Install Application -->
1818

@@ -137,10 +137,11 @@
137137

138138
<!-- Install Python 3.13 -->
139139
<!-- https://docs.python.org/3/using/windows.html -->
140-
<PackageGroup Id="Python_3.13">
140+
<PackageGroup Id="Python_3x">
141141
<ExePackage Id="Python_3.13_x64"
142142
DisplayName="Python 3.13"
143143
Vital="yes"
144+
Name="python-3.13.3-amd64.exe"
144145
DownloadUrl="https://www.python.org/ftp/python/3.13.3/python-3.13.3-amd64.exe"
145146
InstallArguments="/passive"
146147
UninstallArguments="/passive /uninstall"
@@ -151,6 +152,7 @@
151152
<ExePackage Id="Python_3.13_x86"
152153
DisplayName="Python 3.13"
153154
Vital="yes"
155+
Name="python-3.13.3.exe"
154156
DownloadUrl="https://www.python.org/ftp/python/3.13.3/python-3.13.3.exe"
155157
InstallArguments="/passive"
156158
UninstallArguments="/passive /uninstall"

0 commit comments

Comments
 (0)