In my build I need to occasionally copy a folder. i.e. If the folder's not there it's not a fail.
Currently I've used the copy task with "Continue on error" set which makes it look like my build has only partially succeeded.
I've also tried the "Command Line" task with robocopy/xcopy specified thus:
xcopy c:\here\ c:\there\ 2>NUL
Any tips on how I can fix this? e.g. inline powershell might do.