开发者

Need help in MSBuild script for build pass\fail

开发者 https://www.devze.com 2022-12-12 23:39 出处:网络
I have a qu开发者_运维问答estion related to MSBuild script. My scenario is if build fails, build output should be copied into local system. If build passes, build output goes into a server destination

I have a qu开发者_运维问答estion related to MSBuild script. My scenario is if build fails, build output should be copied into local system. If build passes, build output goes into a server destination folder.

Can anybody help me out? I am trying this with MSBuild not with Teambuilds.

Thanks Shanthi


If your build fails then the output will be in an unknown indeterminable state that will be of little use to you, so there is little or no point in copying it to a local location. If the build fails then the final task which copies the output to the network won't be executed, so that problem is taken care of.

If you still want to handle errors and execute certain tasks upon failure, then this page has some good suggestions. Alternatively, you may find the need to write your own task to do specifically what you want (writing tasks is very easy), this link will help you with that.

0

精彩评论

暂无评论...
验证码 换一张
取 消