Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to add AOP to capabilities to a project I am working on. Basically I need to add aspects to all classes in the current assembly implementing a given interface. I tried implementing this feature using PostSharp' IAspectProvider, but unfortunately that functionality is only presented in the paid version. I then tried Castle's DiscoveryProxy, but its implementation based on proxies does not seem to be useful on what I am trying to archive.

Do you guys have any experience implementing this with some other AOP library?

Thanks

share|improve this question
sheepaspect.codeplex.com – David Brabant Nov 23 '12 at 12:53
I did not find any way to inject Aspects during runtime using this library. – Marco Nov 23 '12 at 13:22
Did you see this? stackoverflow.com/a/633820/279516 – Bob Horn Nov 23 '12 at 13:24
@BobHorn I did, and I tried getting started with DiscoveryProxy but it seems that to have that working you then need to call you class methods thru the proxy and that is not what I want. – Marco Nov 23 '12 at 13:46
@Marco Well, we actually use this: msdn.microsoft.com/en-us/magazine/cc164165.aspx. We've been using it for years and it works well. Perhaps give that a shot. – Bob Horn Nov 23 '12 at 14:26
show 1 more comment

closed as not constructive by casperOne Nov 23 '12 at 13:29

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

Browse other questions tagged or ask your own question.