The problem is that the task that is created for logging the exception never resolves. Simplified to use Task.Run(...) without Task.ContinueWith(...) and added an integration test to verify that a failing transformation actually exits the program without hanging.
Fixes #291 Fixes #174 (duplicate of the former)
The problem is that the task that is created for logging the exception never resolves. Simplified to use
Task.Run(...)
withoutTask.ContinueWith(...)
and added an integration test to verify that a failing transformation actually exits the program without hanging.