I added a property in the model from my other project, compiled the dll and replaced it in my main project libs. When I try to use that new model property, there is no autocomplete for this one only, but if I write it down, it compiles.
However, Xamarin puts the code in red like this "object.Property" and when I hover the mouse on that property, it says
Error CS0117 : 'Object' does not contain a definition for 'Property'
but again, it compiles and I can see its value when debugging.
Is there something I missed so that Xamarin can autocomplete my new properties and know its type?