Re: [WiX-users] Changing File source depending on deployment environment

2009-01-22 Thread Bob Arnson
Anupama A wrote: > Thanks. I can use the preprocessor provided I know what values to set at > compile time. > I need a solution that is flexible enough to set values at deploy time, may > be based on some user input > Use multiple components and give each one a condition based on a property yo

Re: [WiX-users] Changing File source depending on deployment environment

2009-01-22 Thread Anupama A
Date: Thu, 22 Jan 2009 07:57:12 -0800 From: Bob Arnson Subject: Re: [WiX-users] Changing File source depending on deployment environment To: "General discussion for Windows Installer XML toolset." Message-ID: <49789758.7080...@joyofsetup.com> Content-Type: text/plain; ch

Re: [WiX-users] Changing File source depending on deployment environment

2009-01-22 Thread Bob Arnson
Anupama A wrote: > 2. Depending on the deployment environment, I also want to add source files > to the MSI, like Dev.Config should be part of Dev.MSI etc. These are needed > to start the service later. > Check out the preprocessor topic in WiX.chm; you can use , for example, to conditionally

Re: [WiX-users] Changing File source depending on deployment environment

2009-01-22 Thread Rob Mensching
File element can't be a property. It has to be included in your MSI. CopyFile might do what you want. -Original Message- From: Anupama A [mailto:anupama...@gmail.com] Sent: Wednesday, January 21, 2009 23:28 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Changing File s

[WiX-users] Changing File source depending on deployment environment

2009-01-21 Thread Anupama A
Hi I am trying to come up with an installer for a Windows service and it needs to do this: 1. Update the .exe.config based on deployment environmment I am using a a combination of element and a console app (which is executed as a post build event) to set the properties programatically with the me