After adding pooler to project, all my Task.FromResult() statements start throwing error "'Task' does not contain a definition for 'FromResult'". Appears to be a name clash with your Task Struct?
I know I can work around it by fully-qualifying my existing statements so it's not a major issue (I don't often use Task.FromResult()), but that's pretty annoying and I'd prefer it not be necessary.
Thank you.
After adding pooler to project, all my Task.FromResult() statements start throwing error "'Task' does not contain a definition for 'FromResult'". Appears to be a name clash with your Task Struct?
I know I can work around it by fully-qualifying my existing statements so it's not a major issue (I don't often use Task.FromResult()), but that's pretty annoying and I'd prefer it not be necessary.
Thank you.