0.13.1
Roll back version 0.13.0 .NET standard change for portable libraries due to reported issues with it.
Also, version 0.13.0 was adding unnecessary packages to Android and iOS projects, and they can now be safely uninstalled. You will find a list of these unnecessary packages in the packages.config file attached to this release.
If your portable project is using .NET standard, you can still use our nugets by adding this to your project.json file:
"frameworks": {
"netstandard1.{DotNETStandardVersion}": {
"imports": "portable-net45+win8+wpa81"
}
}
After the dependencies section.
Example:
{
"dependencies": {
"Microsoft.Azure.Mobile.Analytics": "0.13.1",
"Microsoft.Azure.Mobile.Crashes": "0.13.1",
"Microsoft.Azure.Mobile.Distribute": "0.13.1",
"Microsoft.Azure.Mobile.Push": "0.13.1",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"netstandard1.0": {
"imports": "portable-net45+win8+wpa81"
}
}
}