錯誤19 Directory元素包含意外的子元素'ComponentGroup'。 Reporting \ Directories.wxs 216 1在Wix 3.6.2221.0中添加ComponentGroup時,出現錯誤
1
A
回答
4
根據wix documentation for ComponentGroup,可能的父元素是Fragment或Product。不允許將組件組直接放在目錄元素下。
我通常把每個組件組中獨立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>
標籤。更多關注標籤的位置。
相關問題
- 1. WIX ComponentGroup子目錄
- 2. 添加類時出現錯誤消息
- 3. 添加UITabBarController時出現錯誤
- 4. 添加數組時出現PreparedStatment錯誤
- 5. 添加cloudflare時出現SSL錯誤
- 6. 添加runat = server時出現錯誤
- 7. 添加用戶時出現WildFly錯誤
- 8. 添加Android時出現Cordova錯誤
- 9. 添加圖片時出現500錯誤
- 10. 添加jedi-vim時出現錯誤
- 11. 添加模塊時出現DotNetNuke錯誤
- 12. 添加時出現soapui WSDL錯誤
- 13. 添加@Entity時出現休眠錯誤
- 14. 出現錯誤時添加CSS
- 15. 在Wix中,可以同時定義ComponentGroup和Directory嗎?
- 16. 在Bluemix答案中添加Kinetise服務時出現500錯誤
- 17. 在mongoDB中添加數據時出現重複錯誤
- 18. 在Jhipster中添加新服務時出現代碼錯誤500
- 19. 在ios中添加HTML路徑時出現錯誤
- 20. 在熊貓數據框中添加列時出現NaT錯誤
- 21. 在.cpp文件中添加頭文件時,出現錯誤
- 22. 嘗試在枚舉中添加IsSerializable時出現gwt錯誤
- 23. 在visual studio中添加服務引用時出現錯誤
- 24. 在mysql表中添加外鍵約束時出現錯誤1005
- 25. 在CSS中添加新元素時出現錯誤
- 26. Shopify - 添加新產品時出現API錯誤(Lexical JSON錯誤)
- 27. WiX升級後出現熱量錯誤
- 28. 僅在WinXP機器上安裝WiX時出現錯誤2259
- 29. 在phonegap中添加Email composer插件時出現錯誤「添加插件com.example.abc時出錯」
- 30. 將結構添加到列表中時出現Nullptr錯誤
很好,夥計們。 Thx to all ..我的帖子回答了當前的問題。起初回答。如果你不能正確閱讀,或者不能快速理解,那不是我的問題。想要好的和不錯的答案?去disigners。它只是一個proger門戶。有很多空閒時間花在這樣的答案上?好吧,我爲你感到高興。同時我會賺你的錢。最好的祝福=) – AkmecNurik