Project target script after publishing of files

386 Views Asked by At

I need to execute my power shell script after my program has published (i use the ClickOnce). For this, I add into my .csproj file:

<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Target Name="AfterPublish">
      <Exec Command="powershell.exe -Command &quot;&amp; { .\Deploy.ps1 }&quot;" />
  </Target>
...
</Project>

But the script executes before publish. It is absolutely necessary that the script execute after the program has finished publishing because script copies the resulting published files from my computer to Azure storage.

1

There are 1 best solutions below

2
On

You should attach it to WebDeployPublish traget. Have a look at your typo (AffterPublish). You could try this:

<Target Name="AfterPublish" AfterTargets="MSDeployPublish">
   [DO YOUR STUFF]
</Target>

Hope it helps