0
votes
2answers
34 views
How to convert an exception to another one using PostSharp?
I would like to automagically add the following code around the body of some methods:
try
{
// method body
}
catch (Exception e)
{
throw new MyException("Some appropriate message", e);
}
I am …
0
votes
4answers
231 views
How to get this really fast?
I have a framework that allows users to do queries to a specific datasource (the Football Manager 2010 ingame database, for those of you interested).
In this framework, I have two different modes …
1
vote
2answers
62 views
Reduce PostSharp compile time overhead
We recently introduced PostSharp into our code base and the compile time of our ASP.NET MVC project has doubled to quadrupled. We have about 3 MVC projects and approximately 8 class library projects …
1
vote
1answer
17 views
Deploy multiple projects using PostSharp on a target machine without the PostSharp MSI
We have several projects hanging off of a solution, a website and some services. Each will utilise PostSharp but as we do not want to install PostSharp on the target machine using the MSI we can …
2
votes
2answers
83 views
Preprocessing C# - Detecting Methods
Hey,
I require the ability to preprocess a number of C# files as a prebuild step for a project, detect the start of methods, and insert generated code at the start of the method, before any existing …
0
votes
1answer
38 views
Null reference exception on MethodExecutionEventArgs.Method using PostSharp with multiple web service projects
HI,
I'm using PostSharp to log entry and exit to every method in my Application assembly. This assembly is strongly named, versioned and registered in the GAC.
It is then shared by 2 web service …
0
votes
2answers
59 views
Use AOP in C# to detect if return value is used
This is related to my other question, but this time very specific. Is it possible, using AOP (PostSharp in particular) to detect if function's return value was used? For example
var x = y.func(); // …
0
votes
0answers
47 views
Using Reflection and PostSharp alternatively !
Is there a Code sample that uses PostSharp actively but can also use System.Reflecttion.Emit alternatively to get field value and load into LocalVariableSymbol of PostSharp ?
eg.
in PS …
1
vote
2answers
56 views
Hiding inherited named parameters on attributes C# (3.5)
Hi all,
I am using PostSharp to add some compile time logic to my attributes - in once case [IndexedCategory ("CatName", CatIndex)]. The trouble comes comes in because IndexedCategory derives from …
1
vote
2answers
75 views
What are the functional differences between AspectJ and PostSharp?
Does anyone know what AOP features are different between AspectJ and PostSharp (yes I know they are for different languages and platforms)?
I'm trying to understand what kind of things AspectJ would …
0
votes
1answer
68 views
.NET Conditional Compiler Symbols and Unit Test Libraries
My team has a set of unit test libraries that run against our application code - unfortunately they are throwing (unexpected) exceptions. The reason for this is that our logging code is being called …
0
votes
0answers
34 views
System.AccessViolationException with Dynamic Proxy Generation
We are using PostSharp to inject caching functionality, we are only seeing this issue when we are using it. When we use Spring the issue seems to go away.
Any help would be appreciated as this, the …
0
votes
1answer
39 views
Has anybody used any AOP products under Mono?
I'm looking into using PostSharp on one of my projects. The complicating factor is that I need PostSharp to work on both Windows x64 and Linux x64/Mono.
According to the available info for PostSharp, …
0
votes
0answers
13 views
How to use PostSharp with MOQ?
Hello!
We are trying to use PostSharp, more specifically the OnMethodInvocationAspect, to intercept the methods of a class.
The code runs fine, but when testing it with MOQ, it seems to be messing …
0
votes
1answer
13 views
How do I create a pointcut to intercept all methods in a class with PostSharp?
I've tried using AttributeTargetTypes, but it just won't work. What am I missing?
thanks
