Skip to content
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.

Publish Extensibility

Vijay Ramakrishnan edited this page Feb 22, 2018 · 1 revision

Sample to Add Pre-Publish and Post-Publish extensibility:

  <Target Name="CustomActionsBeforePublish" BeforeTargets="BeforePublish">
    <Message Text="Actions BeforePublish" Importance="high" />
  </Target>
  
  <Target Name="CustomActionsAfterPublish" AfterTargets="AfterPublish">
    <Message Text="Actions AfterPublish" Importance="high" />
  </Target>
Clone this wiki locally