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 "& { .\Deploy.ps1 }"" />
</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.
You should attach it to WebDeployPublish traget. Have a look at your typo (AffterPublish). You could try this:
Hope it helps