When I add this line:
private readonly MobileServiceClient _mobileServicesClient = new MobileServiceClient(AzureConfig.MobileServicesUri, AzureConfig.MobileServicesApplicationKey);
to my android project after installing the Azure Mobile Services component I get the following error:
The type System.IDisposable' is defined in an assembly that is not referenced. Consider adding a reference to assembly
System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' (CS0012) (SomeCo.Mobile.Droid)
That exact same line of code works fine in the iOS project.
I can't add a reference to System.Runtime - it's in mscorlib
Has anyone seen this before?