Currently, the RUC analyzer and RAF analyzer don't check for other virtual calls, for example:
// On one file
public virtual void VirtualMethod() => null
// On some other file
[RequiresAttributeFiles]
public override void VirtualMethod(){
SomeCode
}
public void M1(){
VirtualMethod(); //This doesnt warn on the analyzer
}
The behavior should be to warn on all implementations of the method