How is it possible that this code
TaskManager.RunSynchronously(fileMananager.BackupItems, package);
causes a compile error
I came across the same problem, the solution was:
var r = RunSynchronously(x => { return true; }, true); RunSynchronously(x => { }, true);
Now, why the compiler cannot do that???