Hi!

I'm trying to store binary data pulled in from a file into a wix 
<CustomTable />. Therefore, I've set up a custom table like this:

    <CustomTable Id="MyFiles">
      <Column Id="Filename" Type="string" Category="Identifier" />
      <Column Id="FileContents" Type="binary" Category="Binary" />
      <Row>
        <Data Column="0">file1.dat</Data>
        <Data Column="2">? ? ?</Data>
      </Row>
    </CustomTable>

The only way I see this could be achieved is by putting binary data 
directly into my WiX XML file in a CDATA block. But that's not a very 
nice solution. Is there some kind of <include /> statement or 
$(dosomething) I can use to read the data I want to store in the custom 
table from a file?

-Markus-


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to