I have TFS2010 building a project solution, which is a copier. The build is succesful but does nothing, ie. doesn\'t copy.
How would I get the triggered build to copy th
If you need the build process to invoke a program you need to edit the TFS Build Process Template.
There are a number of resources on the net for this, a good one is by Ewald Hofman. You can also find details in the TFS 2010 book by Wrox.
Once you are familiar with the Process Template you will need to add an InvokeProcess
activity after the activities for the build has completed.
Also, consider adding a If
activity and setting an argument so you can control which builds do this and which don't - for example, do your CI builds need this step?