Re: [WiX-users] binary dependencies in binary stream

2009-04-13 Thread Wilson, Phil
XML toolset. Subject: Re: [WiX-users] binary dependencies in binary stream But how, when, and where the CA DLLs is not documented. You should not take advantage of undocumented features. Compiling and linking everything int your CAs as needed is recommended (or, better, don't require CAs during

Re: [WiX-users] binary dependencies in binary stream

2009-04-11 Thread Heath Stewart
Wilson -Original Message- From: Thomas S. Trias [mailto:tomtr...@artizan.com] Sent: Friday, April 10, 2009 9:12 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] binary dependencies in binary stream Is there any good way to deploy a temporary file

Re: [WiX-users] binary dependencies in binary stream

2009-04-11 Thread Bob Arnson
Thomas S. Trias wrote: Is there any good way to deploy a temporary file resource using the File table and standard actions? I know that the scheduling gets tricky, especially since RemoveFiles occurs before InstallFiles. The closest you're going to come is Phil's suggestion of

Re: [WiX-users] binary dependencies in binary stream

2009-04-10 Thread Bob Arnson
Leo ... wrote: How could I include two binaries where one references the other in the binary stream for use as custom actions? There's no built-in support for that; you'd need another custom action to stream out the dependency. -- sig://boB http://joyofsetup.com/

Re: [WiX-users] binary dependencies in binary stream

2009-04-10 Thread Thomas S. Trias
. Thomas S. Trias Senior Developer Artizan Internet Services http://www.artizan.com/ Original Message Subject: Re: [WiX-users] binary dependencies in binary stream From: Bob Arnson b...@joyofsetup.com To: General discussion for Windows Installer XML toolset. wix-users

Re: [WiX-users] binary dependencies in binary stream

2009-04-10 Thread Wilson, Phil
Message- From: Thomas S. Trias [mailto:tomtr...@artizan.com] Sent: Friday, April 10, 2009 9:12 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] binary dependencies in binary stream Is there any good way to deploy a temporary file resource using the File table

[WiX-users] binary dependencies in binary stream

2009-04-09 Thread Leo ...
Hi all, How could I include two binaries where one references the other in the binary stream for use as custom actions? For example: file binary1.exe references dll binary2.dll when it gets executed. Will including both of these binaries in the binary streams as follows work? Or