Does anyone know exit codes for tfsbuild.exe?

Does anyone know exit codes for tfsbuild.exe ?

I looked at MSDN, but I can not find any information.

+5
source share
1 answer

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.

+7
source

All Articles