2013-09-23 82 views
1

我有一個用於webproject(asp.net)的wix安裝程序。該安裝程序依賴於msdeploy,因此我的網站內容被封裝在一個zip文件中,並且該文件用於在目標處進行安裝。我想在安裝目錄中包含TXT,但我無法將此文件添加到Web項目解決方案中。Wix - WebProject - 在安裝文件夾中添加一個文件

任何想法如何實現?

回答

1

您可以創建自定義操作來爲您完成這項工作。

嘗試:

<CustomAction Id="ConfigCommand" Property="Cmd" Value="[SystemFolder]cmd.exe"/> 
<CustomAction Id="YourActionName" Return="check" Property="Cmd" ExeCommand="/c copy [#README.txt] [INSTALLDIR]\README.txt " /> 

<InstallExecuteSequence> 
    ..... 
    <Custom Action="ConfigCommand" After="SomeActionBefore"></Custom> 
    <Custom Action="YourActionName" After="ConfigCommand"></Custom> 
</InstallExecuteSequence> 
相關問題