2012-07-02 37 views

回答

4

根據wix documentation for ComponentGroup,可能的父元素是FragmentProduct。不允許將組件組直接放在目錄元素下。

我通常把每個組件組中獨立WXS文件是這樣的:

<?xml version='1.0' encoding='utf-8'?> 
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> 
    <Fragment> 

     <DirectoryRef Id="someFolder"> 
      <Component Id="file1"> 
       <File Source="file1" /> 
      </Component> 
      <Component Id="file2"> 
       <File Source="file2" /> 
      </Component> 
     </DirectoryRef> 

     <ComponentGroup Id="mycomponentgroup"> 
      <ComponentRef Id="file1" /> 
      <ComponentRef Id="file2" /> 
     </ComponentGroup> 

    </Fragment> 
</Wix> 

然後我把ComponentGroupRef根據相關Feature

-1

ComponentGroup需要放入< Product>標籤,但不能放入< Directory>標籤。更多關注標籤的位置。

+0

很好,夥計們。 Thx to all ..我的帖子回答了當前的問題。起初回答。如果你不能正確閱讀,或者不能快速理解,那不是我的問題。想要好的和不錯的答案?去disigners。它只是一個proger門戶。有很多空閒時間花在這樣的答案上?好吧,我爲你感到高興。同時我會賺你的錢。最好的祝福=) – AkmecNurik

相關問題