3

I have added an Installer class and within the class i'm overriding Install method. Within this method i want to get the path where MSI is being installed? (Directory user have chosen to install the application) ?

I tried the following and it gives me empty string,

string s = Context.Parameters["SrcDir"];
Kurubaran
  • 8,696
  • 5
  • 43
  • 65

1 Answers1

7

I finally found how to get the target directory path from installer class

string installationPath = this.Context.Parameters["assemblypath"];
Kurubaran
  • 8,696
  • 5
  • 43
  • 65