[wix-users] Restart required

Nir Bar nir.bar at panel-sw.com
Mon May 15 09:31:11 PDT 2017


Assuming your product makes no use of CustomAction.Install.WiX.CA.dll except during installation, you can probably use it as a binary (meaning, a file that is only temporarily used during installation).
If that is the case, change you authoring to:



<Binary Id="$(var.CustomAction.Install.$(sys.BUILDARCH).WiX.TargetName).CA.dll" SourceFile="$(var.CustomAction.Install.$(sys.BUILDARCH).WiX.TargetDir)\$(var.CustomAction.Install.$(sys.BUILDARCH).WiX.TargetName).CA.dll"/>
<CustomAction Id="CAInstall" BinaryKey="$(var.CustomAction.Install.$(sys.BUILDARCH).WiX.TargetName).CA.dll" DllEntry="CAInstall" Impersonate="no" Execute="deferred" /> 
<CustomAction Id="CAUninstall" BinaryKey="$(var.CustomAction.Install.$(sys.BUILDARCH).WiX.TargetName).CA.dll" DllEntry="CAUninstall" Impersonate="no" Execute="deferred" /> 



Nir Bar
Panel::Software Architecture and Development

______________________________________________________________
JetBA.net- Native and WPF WiX BootstrapperApplication Frameworks






More information about the wix-users mailing list