Re: [WiX-users] File from local location

2010-03-04 Thread Pally Sandher
ssion for Windows Installer XML toolset.' Subject: Re: [WiX-users] File from local location But I don't have the real file the msi will point to (it'll be placed next to him at the installation), so I use a dummy file with wrong details. Is there a different way to install suc

Re: [WiX-users] File from local location

2010-03-03 Thread Wilson, Phil
Adding a hash is also recommended. Phil Wilson -Original Message- From: Sascha Beaumont [mailto:sascha.beaum...@gmail.com] Sent: Tuesday, March 02, 2010 8:00 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] File from local location If you do use

Re: [WiX-users] File from local location

2010-03-02 Thread Sascha Beaumont
If you do use an empty file and want the file to be "looked after" by Windows installer for patching, repair, etc - you can update the filesize information post-build. Something like the following should work (this is a somewhat simplified version of an actual script we use) Const MSI_SOURCE = "ap

Re: [WiX-users] File from local location

2010-03-02 Thread Wilson, Phil
ssage- From: hila toronchik [mailto:hila.toronc...@safend.com] Sent: Monday, March 01, 2010 11:01 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] File from local location But I don't have the real file the msi will point to (it'll be pla

Re: [WiX-users] File from local location

2010-03-01 Thread hila toronchik
, March 01, 2010 2:47 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] File from local location On 3/1/2010 1:13 AM, hila toronchik wrote: > The problem is - that an empty file named Global.jpeg need to be placed the > development machine in order to build the msi. > WiX nee

Re: [WiX-users] File from local location

2010-03-01 Thread Bob Arnson
On 3/1/2010 1:13 AM, hila toronchik wrote: > The problem is - that an empty file named Global.jpeg need to be placed the > development machine in order to build the msi. > WiX needs the file to fill out the details of the file (size, e.g.) in the MSI database. -- sig://boB http://joyofsetup

[WiX-users] File from local location

2010-02-28 Thread hila toronchik
I have the next code in my project: The problem is - that an empty file named Global.jpeg need to be placed the development machine in order to build the msi. Is there an elegant solution for taking a file placed at the source location of the msi? R