Hi. Is there any way to get .wxs file formed like the following using
heat.exe?

<?xml ...>
<Wix ...>
  <Fragment>
    <DirectoryRef Id="INSTALLFOLDER">
      <Directory Id="a">
        <Directory Id="b" />
        <Directory Id="c">
          <Directory Id="d" />
        </Directory>
      </Directory>
    </DirectoryRef>
  </Fragment>
  <Fragment>
    <ComponentGroup Id="CG">
      <Component Id="..." Guid="..." Directory="a">
        <File ... />
      </Component>
      <Component Id="..." Guid="..." Directory="b">
        <File ... />
      </Component>
      <Component Id="..." Guid="..." Directory="b">
        <File ... />
      </Component>
      <Component Id="..." Guid="..." Directory="c">
        <File ... />
      </Component>
      <Component Id="..." Guid="..." Directory="d">
        <File ... />
      </Component>
      <Component Id="..." Guid="..." Directory="d">
        <File ... />
      </Component>
      <Component Id="..." Guid="..." Directory="d">
        <File ... />
      </Component>
    </ComponentGroup>
  </Fragment>
</Wix>

I want to harvest files in ComponentGroup basis. I've tried some
combinations of heat.exe options, but couldn't get the result like above.

Thanks.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Adjusting-result-of-heat-exe-tp7599018.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to