xamarin.android - async / await in .NET 4.5 PCL targeting Mono for Android? -
i'd make portable class library (pcl) version of .net 4.5 library capable of targeting mono android. library makes heavy use of async / await.
i understand latest xamarin preview release includes support async / await, , seems others have async / await working pcl, can combination made work? if so, can provide secret formula?
i've got working using .net framework profile78. 78 appears combination of .net 4.5, windows phone 8, , .net windows store apps.
the easiest way update .csproj file replace existing targetframeworkversion , targetframeworkprofile tags these:
<targetframeworkversion>v4.5</targetframeworkversion> <targetframeworkprofile>profile78</targetframeworkprofile>
Comments
Post a Comment