views:

26

answers:

2

I am getting error message from my MSBuild: "nunit-console.exe" exited with code -100.

Does anyone know where NUnit console exit codes meanings can be found?

A: 

Have you looked at the source? NUnit is open source, (and very well written) so you should be able to figure this out from the source.

Rohith
Do you have any ideas where should I look in the code to find explanation for "Unexpected error"? =)
DarkDeny
+2  A: 

Error code -100 stands for UNEXPECTED_ERROR

static ConsoleUi()
{
    OK = 0;
    INVALID_ARG = -1;
    FILE_NOT_FOUND = -2;
    FIXTURE_NOT_FOUND = -3;
    TRANSFORM_ERROR = -4;
    UNEXPECTED_ERROR = -100;
}
madgnome
Thanks for codes!
DarkDeny