Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个部署为 ClickOnce 的 VSTO Excel COM-AddIn。
IAddInPostDeploymentAction这通过在清单中实现和绑定它来使用安装后操作<vstav3:postActions>。
IAddInPostDeploymentAction
<vstav3:postActions>
但是,我们现在还需要一个预安装操作(读取注册表并禁用现有的插件)。
ClickOnce 可以做到这一点吗?
做到这一点的唯一方法是创建一个先决条件来完成您想要完成的工作,并将其部署为先决条件。ClickOnce 本身不提供执行预安装命令的方法。
在创建设置和部署包后,您可以使用 Bootstrapper Manifest Generator 创建一个先决条件包,以执行您需要完成的任何命令。