|
From: Rob M. <ro...@us...> - 2004-05-12 23:20:44
|
Okay, I found the bug. Thanks for narrowing this down.
The bug occurred when there was a change to escape "#" characters at the
beginning of string values. You can see this around in Compiler.cs:5164 or
so. I'll have a fix for the release tomorrow. Or if you want, just remove
the first line and add the second one
Compiler.cs:5164
< if (0 == prefix.Length && value.StartsWith("#"))
> if (0 == prefix.Length && null != value && value.StartsWith("#"))
Also, your work around below is changing the logic to remove the registry
key only during the install of your Component. It doesn't sound like that
is what you want. I'll work on the documentation in this area since it is a
bit lacking.
Thanks again.
-----Original Message-----
From: wix...@li...
[mailto:wix...@li...] On Behalf Of Tore Bellis
Sent: Wednesday, May 12, 2004 14:36
To: WiX...@li...
Subject: RE: [WiX-users] Tips for migrating to 2.0.1706?
Here is what seems to be doing it:
<Registry Root="HKLM" Key="Software\Credant\Gatekeeper" Name="*"
Id="RCMGGK"/>
The old version accepted this, and new that it meant to delete the
entire key in an uninstall. The current version blows. If I change this
line to...
<Registry Root="HKLM" Key="Software\Credant\Gatekeeper" Name="*"
Id="RCMGGK" Action="removeKey"/>
...then the line is accepted. Now I have to see if using the Action
attribute messes anything else up.
Regards,
Tore
> -----Original Message-----
> From: Tore Bellis
> Sent: Wednesday, May 12, 2004 3:57 PM
> To: WiX...@li...
> Subject: RE: [WiX-users] Tips for migrating to 2.0.1706?
>
>
> It is 650 lines long, plus another 103 in a .wxi include
> file. I am trying to isolate what is causing the issue in a
> small test script. If I succeed in recreating the issue, that
> small file will be much more usable for testing than my
> sprawling mess of a project.
>
> -- Tore
>
> > -----Original Message-----
> > From: Rob Mensching [mailto:ro...@us...]
> > Sent: Wednesday, May 12, 2004 3:43 PM
> > To: Tore Bellis
> > Subject: RE: [WiX-users] Tips for migrating to 2.0.1706?
> >
> >
> > Would you mind sharing your .wxs file as well? I'm not
> > seeing this crash in
> > any of my tests.
> >
> > Thanks.
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by Sleepycat Software
> Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to
> deliver higher performing products faster, at low TCO.
> http://www.sleepycat.com/telcomwpreg.php?> From=dnemail3
>
>
> _______________________________________________
> WiX-users mailing list
> WiX...@li...
> https://lists.sourceforge.net/lists/listinfo/w> ix-users
>
-------------------------------------------------------
This SF.Net email is sponsored by Sleepycat Software
Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to
deliver higher performing products faster, at low TCO.
http://www.sleepycat.com/telcomwpreg.php?From=dnemail3
_______________________________________________
WiX-users mailing list
WiX...@li...
https://lists.sourceforge.net/lists/listinfo/wix-users
|