On Mon, Mar 15, 2010 at 7:26 PM, banda <srinivas.ba...@igate.com> wrote:

>
> i am new ro wix,
> How to use "<" and ">" in CDATA function
>

This is an XML thing... a CDATA section is interpreted exactly as it's
entered, so you can just use < and > as normal characters.

e.g.

<Publish Property="SOMETHING" Value="1"><![CDATA[[ SOMETHINGELSE < 3
]]></Publish>

To do this without the CDATA (which in terms of XML is essentially the same,
although I'm new to WiX too, so I'm only presuming it treats it the same)

<Publish Property="SOMETHING" Value="1">SOMETHINGELSE &lt; 3</Publish>

The first probably reads a lot easier.


Hope that helps,

Dave.
------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to