Is there a way to apply a custom method interceptor aspect, based on Fody.OnMethodBoundaryAspect, to all public methods in an assembly without marking each method with the attribute?
I've tried applying it using [assembly: MyAspect(AttributeTargetMemberAttributes = MulticastAttributes.Public)] in AssemblyInfo.cs file, but it is applied to properties as well, and this affects the performance.