Glen Harvy wrote:
Is there somewhere on the net that I can read the latest information on WiX3.

Not much -- WiX v3 is still in active development.

Specifically, I want to run a CustomAction but the documentation I can see refers to copying sca.dll wixca.dll from the bin\ca director but they don't exist.

The custom action DLLs are now part of WiX extensions that you pass on the command line via the -ext switch. Extensions automatically make their symbols available, so if you refer to them, the linker pulls the CA DLL into your .msi. For example:

<CustomAction Id="LaunchReadme" BinaryKey="WixCA" DllEntry="WixShellExec" Execute="immediate" Return="check" Impersonate="yes" />

--
sig://boB
http://joyofsetup.com/

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to