我使用下面的代碼,如何根據WIX中的條件跳過子目錄?
<Directory Id="dir2" Name="Folder">
<Component Id="comp_one" Guid="{0D827414-5629-48A0-9DC1-9344C5C6EBFC}">
<Condition>INSTALLSAMPLES</Condition>
<File Id="file_one" Source="..\..\..\fileone.exe" />
</Component>
</Directory>
上面的代碼,如果條件假做工精細,跳過Folder
。
但是在下面的代碼中,如果Condition
爲假,則會創建Folder
和SubFolder
。有沒有解決方案可以跳過基於條件的目錄?
<Directory Id="dir1" DiskId="3" Name="Folder">
<Directory Id="dir2" Name="SubFolder">
<Component Id="comp_one" Guid="{0D827414-5629-48A0-9DC1-9344C5C6EBFC}">
<Condition>INSTALLSAMPLES</Condition>
<File Id="file_one" Source="..\..\..\fileone.exe" />
</Component>
</Directory>
</Directory>
請幫我解決問題。