How to get Fody / PropertyChanged to work in an iOS project in Xamarin Studio?

I installed Nuget for Xamarin Studio and tried to add Fody / PropertyChanged to my iOS solution. However, I get the following error:

Adding 'PropertyChanged.Fody 1.41.0.0' to ImapClientApp.iOS.
Could not install package 'PropertyChanged.Fody 1.41.0.0'. You are trying to install this package into a project that targets 'MonoTouch,Version=v1.0', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
System.InvalidOperationException: Could not install package 'PropertyChanged.Fody 1.41.0.0'. You are trying to install this package into a project that targets 'MonoTouch,Version=v1.0', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
  at NuGet.ProjectManager.ExtractPackageFilesToProject (IPackage package) [0x00000] in <filename unknown>:0 

Does anyone know how to make it work with iOS solutions?

+4
source share
1 answer

Try adding the following nuget package for Fody. Successfully used it in my project.

https://www.nuget.org/packages/Fody/

0
source

All Articles