reactivemarbles / PropertyChanged

A lightweight property changed/binding framework. This is a incubator which is focused on fast binding and property changes.
MIT License
60 stars 9 forks source link

Maui: ambigious reference in generated code #319

Open softlion opened 3 months ago

softlion commented 3 months ago

that happens when ImplicitUsings are enabled in a maui project:

        <ImplicitUsings>enable</ImplicitUsings>

image

softlion commented 3 months ago

I worked around it temporarily by adding:

global using PropertyChangingEventHandler = System.ComponentModel.PropertyChangingEventHandler;
global using PropertyChangingEventArgs = System.ComponentModel.PropertyChangingEventArgs;