从Installer类获取当前msi安装文件的名称
是否可以从自定义操作的 Installer 类中获取当前安装文件 (.msi) 的名称?
我需要这样的东西:
[RunInstaller(true)] public partial class ProjectInstaller : Installer { public ProjectInstaller() { InitializeComponent(); **var fileName = CurrentMSIFileName();** } }
谢谢!!
It is possible to get the name of the current installation file (.msi) from the Installer class of custom action ?
I need something like this:
[RunInstaller(true)] public partial class ProjectInstaller : Installer { public ProjectInstaller() { InitializeComponent(); **var fileName = CurrentMSIFileName();** } }
Thank you!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现基于 Christopher Painter's Answer 的解决方案是使用
OriginalDatabase
属性。现在我可以在安装和卸载过程中获取 msi 安装程序文件名I have found the solution based on Christopher Painter's Answer is by using
OriginalDatabase
property. Now I am able to get the msi installer file name in both during installation and uninstallation