卸载自定义操作
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于他们做什么。
It depends on what they do.
您需要在自定义操作调用中提供有关何时调用它们的条件。
示例:
在这里,正如您所看到的,在安装所有内容之后并且如果在安装时选择应用程序作为功能,将调用自定义操作 UpdateConfig。
You need to provide the condition in custom action call as to when they should be called.
Example :
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.