卸载自定义操作

发布于 2024-11-02 20:40:13 字数 61 浏览 1 评论 0原文

我的 C# 自定义操作应该在哪个自定义操作之后执行?我应该使用什么条件,以便我的自定义操作只能在卸载时运行?

After which custom action should my C# custom actions execute? And what condition should I use so my custom action could run only on uninstall?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

残花月 2024-11-09 20:40:13

我的 C# 应该执行哪个自定义操作
自定义操作执行吗?

这取决于他们做什么。

我应该使用什么条件才能我的
自定义操作只能运行在
卸载?

REMOVE = "ALL"

After which custom action should my C#
custom actions execute?

It depends on what they do.

And what condition should I use so my
custom action could run only on
uninstall?

REMOVE = "ALL"
倾听心声的旋律 2024-11-09 20:40:13

您需要在自定义操作调用中提供有关何时调用它们的条件。

示例:

<Custom Action="UpdateConfig" After="InstallFinalize">INSTALL_APPLICATION = "1"</Custom>

在这里,正如您所看到的,在安装所有内容之后并且如果在安装时选择应用程序作为功能,将调用自定义操作 UpdateConfig。

You need to provide the condition in custom action call as to when they should be called.

Example :

<Custom Action="UpdateConfig" After="InstallFinalize">INSTALL_APPLICATION = "1"</Custom>

Here, as you can see the custom action UpdateConfig will be called after everything is installed and if Application was selected as feature while installing.

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