1
我已經添加了一個安裝程序類,並且在類中我重寫了Install方法。在這種方法中,我想獲得安裝MSI的路徑? (目錄用戶已選擇安裝應用程序)?如何獲得安裝程序類中安裝MSI的路徑
我嘗試以下,這讓我空字符串,
string s = Context.Parameters["SrcDir"];
我已經添加了一個安裝程序類,並且在類中我重寫了Install方法。在這種方法中,我想獲得安裝MSI的路徑? (目錄用戶已選擇安裝應用程序)?如何獲得安裝程序類中安裝MSI的路徑
我嘗試以下,這讓我空字符串,
string s = Context.Parameters["SrcDir"];
我終於找到了如何從安裝程序類
string installationPath = this.Context.Parameters["assemblypath"];
我們如何獲取當前MSI路徑的目標目錄路徑? – Ranish
@Ranish當前MSI路徑是什麼意思? – Kurubaran
如果可以從安裝程序級別設置它,會很有趣。 – C4u