View Single Post
  #2  
Old 12-20-2010, 11:22 AM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,013
You can handle this by adding a vbld_StepDone script event like this to the Team Foundation steps:
Code:
Sub vbld_StepDone()
   If vbld_TempMacros()("RUNPROGRAM_EXITCODE") = 1 Then Step.BuildStatus = vbldStepStatSucceeded
End Sub
http://www.kinook.com/VisBuildPro/Ma...riptevents.htm

We'll also add to our request list explicit support for this in the Team Foundation action.
Reply With Quote