Method 'XXXX' matches automatic change method name but has parameters and will not be used as automatic change callback. Rename the method to remove this warning or remove parameters to use as automatic callback method.
fx I had class
class SomeBaseViewModel<T> : ViewModelBase
{
public T SelectedItem { get; set; }
I would like to my build be silent
resolution:
add some code here https://github.com/Catel/Catel.Fody/blob/0cd6d5c677ded6d48b3d8ace2a8b894e5a015c63/src/Catel.Fody/Core/Models/CatelTypeProperty.cs#L47
to not take method with some attribute into account
Add attribute to suppress message
}