Is there any tutorial to show how can I use MSBuild
tasks like FtpUploadDirectoryContent
to copy file/directory to a remote host using FTP in Team Build 2010? I never used a MSBuild task in TFS 2010.
0
votes
2 Answers
1
votes
Just put it in the AfterBuild target of one of your projects - probably best to put it in the project that's at the top of your dependency graph. You can add a condition if you don't want it to run in Visual Studio, or if you only want to do the FTP transfer for a particular build configuration. For example:
<Project>
...
<Target Name="AfterBuild" Condition="'$(BuildingInsideVisualStudio)'!='true'" >
<!-- Insert your FTP task here -->
</Target>
</Project>