Last active
December 18, 2015 01:28
-
-
Save leniel/5703732 to your computer and use it in GitHub Desktop.
MS Deploy AfterPublish target
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Target Name="CustomAfterPublish" AfterTargets="PipelineDeployPhase;MSDeployPublish;Package"> | |
<!-- Note to see this message when publishing from VS in the output window you must increase the verbosity | |
of the output to Detailed. Here is where you can find the setting: | |
Tools->Options->Projects and Solutions->Build and Run->MSBuild project build verbosity. --> | |
<Message Text="**************** Custom target after publish ****************" Importance="high" /> | |
<Copy SourceFiles="$(ProjectDir)\MyCustomScript.js" DestinationFolder="C:\MyFolder\data\repos\conf\web" /> | |
</Target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment