Any of you try to use async framework inside the Portable Class Library (PCL)? Is it working ?
First instance it is not. There is a known bug in Async Framework with Poratable Class Libraries.It will not detect the async and await correctly with task based operations
How to Fix
First install the BCL Nuget package to he your PCL (Microsoft.Bcl.Async)
in Console -
PM> Install-Package Microsoft.Bcl.Async
Then replace following tags with relevant replacement tag
<dependentAssembly>
&nb...