I am makeing add-in application in vb.net and also making setup for that, but i need some help in instller.vb class file
i want to copy TestAddIn.addin file to client location,and this is added with setup file how can i do code in installer file that it copy to client machine?
target path :
Dim addinTargetPath As String = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "Visual Studio 2008\Addins")
source path:
dim addinsourcePath As String =....................???????????
what to write in source path that give me current working directory?