I'm trying to use a method interceptor so I can run a method before certain marked methods in my Xamarin app. I installed Fody from the NuGet Package Manager, then downloaded MethodBoundaryAspect.Fody.
When creating my method interceptor class, the namespaces appear and the autocomplete works:
As soon as I try to build the solution and run it on the emulator, it fails gives me these errors:
And then in my class, it says that "The type or namespace 'MethodBoundaryAspect' could not be found", even though it was fine before I tried building the app:
Where have I gone wrong here? I'm open to using other open source method interceptors.