My tests usually test client-server components.
A lot of these are started in a dummy thread and communicated to through a dummy network.
They are done shutdown "quickly", which means the server will simply stop what it's doing, close it's (dummy) sockets and exit.
This has as a side effect that some TPL tasks that the server has started might fail due to sockets no longer be available.
These errors are harmless as the .NET runtime doesn't consider exceptions in tasks to be fatal, they do however, cause ncrunch to consider my test to have failed.
is there a way to tell Ncrunch that TPL task exceptions are to be ignored ?