I've tried following the documentation for ReactiveUI.Fody.
https://github.com/kswoll/ReactiveUI.Fody
- Added the FodyWeavers.xml the generated file to the shared project.
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd">
<ReactiveUI />
</Weavers>
- Added the [Reactive] attribute to the property in the shared project.
[Reactive]
public int MyNumber
{
get;
set;
}
- Added references to the ReactiveUI.Fody 16.3.10 Nuget package to my Android, iOS & Shared project.
The property never updates to a newly set value.
Why doesn't this work?