Fix wrong DllEntry for WixRegisterRestartResources
Nir Bar committed
Jan 30, 2023 at 15:34 UTC
7e82c1f05d1bfc70f5d2ccdd93bbf345a7724207
1 file changed
+1
-1
src/ext/Util/wixlib/UtilExtension_Platform.wxi
+1
-1
@@ -125,7 +125,7 @@
125
</Fragment>
126
127
<Fragment>
128
- <CustomAction Id="$(var.Prefix)RegisterRestartResources$(var.Suffix)" DllEntry="WixRegisterRestartResources$(var.Suffix)" Execute="immediate" Return="check" SuppressModularization="yes" BinaryRef="$(var.Prefix)UtilCA$(var.Suffix)" />
128
+ <CustomAction Id="$(var.Prefix)RegisterRestartResources$(var.Suffix)" DllEntry="WixRegisterRestartResources" Execute="immediate" Return="check" SuppressModularization="yes" BinaryRef="$(var.Prefix)UtilCA$(var.Suffix)" />
129
130
<InstallExecuteSequence>
131
<Custom Action="$(var.Prefix)RegisterRestartResources$(var.Suffix)" Before="InstallValidate" Overridable="yes" />