开发者

how to apply a Postsharp aspect solution wide (all classes in namespace)

I am trying to modify the sample trace app that ships with Postsharp so that the trace is applied to all classes in my namespace w开发者_开发技巧ithout explicitly putting the [QuickTrace] on top of each class. I have attached a screenshot. What am I doing wrong ? Right click open/view image for bigger picture. thank you

how to apply a Postsharp aspect solution wide (all classes in namespace)


You're doing it incorrectly. You're trying to assign the aspects to the mscorelib which will wrap calls to any methods that reside in the mscorelib (not your current app) but you're negating that with the fact tyhat you're telling it to apply to methods only in the Trace namespace.

Just use

[assembly: QuickTrace()]

Done. On your aspect, add the following

[QuickTrace(AttributeExclude=True)]
[Serializable]
public QuickTrace : OnMethodBoundaryAspect
{
  //..Aspect code here
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜