Open GoogleCodeExporter opened 9 years ago
i find it,also
Original comment by susua...@gmail.com
on 19 Aug 2011 at 2:36
Any update on this issue? Since we are also facing the same issue and now we
need to update our framework to 4.0.
Original comment by jayainfi...@gmail.com
on 11 Nov 2011 at 11:35
[deleted comment]
I have noticed that the error is within the Castle.DynamicProxy dll. More
specifically, the class file in that dll:
Castle.DynamicProxy.Builder.CodeBuilder.SimpleAST.LockBlockExpression invokes
with reflection the method System.Threading.Monitor.Enter without specifying
(new in .net 4.0) the overload arguments. Changing that line of code to:
gen.Emit(OpCodes.Call, typeof(Monitor).GetMethod("Enter", new Type[] {
typeof(object) })); should solve the problem.
Original comment by Benjamin...@gmail.com
on 30 Nov 2011 at 9:23
In the mean time, you can set the target framework in the properties window for
your project to .net 3.5 and that will solve the issue as well.
Original comment by Benjamin...@gmail.com
on 30 Nov 2011 at 9:24
Is there any chance for newer version in the nearing future?
Original comment by jayainfi...@gmail.com
on 12 Dec 2011 at 10:36
Original issue reported on code.google.com by
david.be...@gmail.com
on 8 Feb 2011 at 2:08