Re: [WiX-users] XmlConfig results in ICE27 failure

2010-04-22 Thread Erich Nurr
Hi! i am trying to modify a maybe existing web.config file in the IIS root directory (default = c:\inetpub\wwwroot) but if i try this code below, a error occurs: The system cannot find the file 'SourceDir\PFiles\web.config' Why the hell is it using the parent directories? i thought the parameter

Re: [WiX-users] XmlConfig results in ICE27 failure

2010-04-22 Thread Pally Sandher
[mailto:erich.n...@gmx.de] Sent: 22 April 2010 11:39 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] XmlConfig results in ICE27 failure Hi! i am trying to modify a maybe existing web.config file in the IIS root directory (default = c:\inetpub\wwwroot) but if i try this code below

Re: [WiX-users] XmlConfig results in ICE27 failure

2010-04-06 Thread Jacques Eloff
Almost. I added a non-empty file element. But, I believe this was fixed in Wix 3.5.1602 so that you don't need to add a dummy File element. Jacques On Mon, Apr 5, 2010 at 12:33 PM, doglin82 karen@solarsoft.com wrote: so you are saying you did the following Component Id=WebConfig

Re: [WiX-users] XmlConfig results in ICE27 failure

2010-04-05 Thread doglin82
so you are saying you did the following Component Id=WebConfig Guid={4B1930CE-1331-4754-855E-77A5FAFFE18B} Directory=INSTALLLOCATION CreateFolder/ File/File --- YOU added this like that? util:XmlConfig Id=WEBCONFIG_section File=[NETFRAMEWORK40FULLINSTALLROOTDIR]config\web.config

Re: [WiX-users] XmlConfig results in ICE27 failure

2010-04-05 Thread doglin82
so you are saying you did the following Component Id=WebConfig Guid={4B1930CE-1331-4754-855E-77A5FAFFE18B} Directory=INSTALLLOCATION CreateFolder/ File/File --- YOU added this like that? util:XmlConfig Id=WEBCONFIG_section File=[NETFRAMEWORK40FULLINSTALLROOTDIR]config\web.config

Re: [WiX-users] XmlConfig results in ICE27 failure

2010-03-19 Thread Jacques Eloff
Filed as 2972975. Thanks, Jacques On Thu, Mar 18, 2010 at 6:20 PM, Bob Arnson b...@joyofsetup.com wrote: On 3/18/2010 8:28 PM, Jacques Eloff wrote: When I tried to build the project, I received the following error: Error 2 ICE27: Action: 'DuplicateFiles' in InstallExecuteSequence table

[WiX-users] XmlConfig results in ICE27 failure

2010-03-18 Thread Jacques Eloff
Hi I'm using Wix v3.5.1512.0. I've been playing with XmlConfig to modify the root web.config file, but ran into a strange issue today. I originally had the following in a component: Component Id=WebConfig Guid={4B1930CE-1331-4754-855E-77A5FAFFE18B} Directory=INSTALLLOCATION

Re: [WiX-users] XmlConfig results in ICE27 failure

2010-03-18 Thread Bob Arnson
On 3/18/2010 8:28 PM, Jacques Eloff wrote: When I tried to build the project, I received the following error: Error 2 ICE27: Action: 'DuplicateFiles' in InstallExecuteSequence table must come after the 'InstallFiles' action. If I add a bogusFile element in the component everything compiles