Referencing xamarin PCL with external PCL's

0

Hello everyone, I have a question about how I can do this in wpf. Now I want to rewrite the same project with xamarin, and reuse the same pattern, but I came across the following situation in which the xamarin project pcl can not reference any other project with the following error

Unable to add reference to project 'mvvm.ViewModel'. Portable Library projects can only reference other Portable Libarary projects and assemblies.

So the xamarin pcl has no way to reference any other pcl project?

    
asked by anonymous 06.11.2016 / 16:35

1 answer

0

This should occur because of the compatibility (Targets) between PCL's.

See which platforms the mvvm.ViewModel PCL is referencing. The targets of this PCL must be the same as the PCL that is receiving the reference.

    
13.03.2017 / 19:02