World's simplest task (see below) is not being executed after I publish my web application project. Any idea why?
<Target Name="AfterPublish"> <Copy SourceFiles="C:\A.txt" DestinationFiles="C:\B.txt" /> </Target>
Note: The following applies to VS2010 and publishing web-application projects with the "Web Deploy" publish method selected in the 'Build/Publish {projectname}' dialog.
Julien Hoarau's correct in that "Publish" is NOT the name of the msbuild target invoked in the above case; the actual target name is "MSDeployPublish".
Therefore, you have to define a "Target" element whose "AfterTarget" attribute's value is set to "MSDeployPublish" - the "Name" attribute's value does not matter (as long as it's unique among target names).
Here's how to do it:
</Project>
tag, add a <Target Name="CustomPostPublishAction" AfterTargets="MSDeployPublish">
element; pick a name of your choice for "CustomPostPublishAction".<Exec Command="..." />
element.Example:
<Target Name="CustomPostPublishActions" AfterTargets="MSDeployPublish" > <Exec Command="echo Post-PUBLISH event: Active configuration is: $(ConfigurationName)" /> </Target>
Note:
<Target>
element in general, see http://msdn.microsoft.com/en-us/library/t50z2hka.aspx If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With