<postActions> 元素(Visual Studio 中的 Office 开发)
vstav3 命名空间的 postActions 元素包含所有描述部署后操作(在安装 Office 解决方案后运行)的 postAction 元素。
<postActions>
<postAction>
<entryPoint>
</entryPoint>
<postActionData>
</postActionData>
</postAction>
</postActions>
元素和特性
postActions 元素是可选的,它位于 vstav3 命名空间中。一个应用程序清单中只能定义一个 postActions 元素。
postActions 元素没有特性。
postActions 具有以下元素。
postAction
可选。vstav3 命名空间中的 postAction 元素的角色是在 <postAction> 元素(Visual Studio 中的 Office 开发)中定义的。
部署后操作示例
说明
下面的代码示例演示 Office 解决方案的应用程序清单中的 postActions 元素,该解决方案是使用 ClickOnce 部署的。此代码示例摘自 Office 解决方案的应用程序清单中提供的一个更大的示例。
代码
<vstav3:postActions>
<vstav3:postAction>
<vstav3:entryPoint
class="PostDeploymentAction.PostDeploymentActionSample">
<assemblyIdentity
name="PostDeploymentAction"
version="1.0.0.0"
language="neutral"
processorArchitecture="msil" />
</vstav3:entryPoint>
<vstav3:postActionData>
</vstav3:postActionData>
</vstav3:postAction>
</vstav3:postActions>