从Installer类获取当前msi安装文件的名称

发布于 2024-08-14 11:51:04 字数 293 浏览 6 评论 0原文

是否可以从自定义操作的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狼亦尘 2024-08-21 11:51:04

我发现基于 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文