No documentation in MSDN
So I had to decompile TFSBuild.exe (fortunately it is .NET)
So, the exit codes I found are
- Unknown = -1,
- Success = 0,
- PartialSuccess = 1,
- UnrecognizedCommand = 2,
- NotAttempted = 3,
- SuccessRebootRequired = 4,
- Failure = 100
This applies to version 11.0.0.0 of the TFSBuild.exe file, but I don’t think they change often.
source
share