3

Is it possible to get any AOP libraries running with the new .NET CLI; i.e. dotnet build?

Most notably, I am looking for ways to do method interception.

I am NOT looking for .NET Core compatibility. I am still using the normal .NET Framework.

Dave New
  • 38,496
  • 59
  • 215
  • 394

1 Answers1

1

AOP is either with a post compiler such as postsharp or with cut points within an ioc container. As for core nothing yet but I would image one will pop up soon.

udelblue
  • 11
  • 2