Tagged Questions

2
votes
3answers
2k views

Any PostSharp alternative?

I have to abandon using PostSharp, because it won't work with obfuscated/merged assemblies. At least, I don't see any way to get it working (it crashes on app start, when assemblies are obfuscated) I ...
0
votes
0answers
32 views

Aspects in .net

I have an ASP.net application for which I would like to produce some trace output. I do not have the source. Only the web-app itself. Is there something like aspects for .net? Is load-time weaving ...
0
votes
1answer
47 views

PostSharp - break other aspects

I have two method that execute first the "Cache" aspect and next the "Log" aspect. I want that, if I have a "cache hit" I don't have to Log anything! In other words, if a certain condition in "Cache" ...