The SL5 assemblies are actually targeting SL4
Getting the source and changing it gives a compile error on this line:
StackFrame sf = new StackFrame(1, true);
Changing to
StackFrame sf = new StackFrame(1);
allows both SL4 and SL5 solutions to compile. Not sure what this impact this has on functionality as I don't use this class.
Cheers
Getting the source and changing it gives a compile error on this line:
StackFrame sf = new StackFrame(1, true);
Changing to
StackFrame sf = new StackFrame(1);
allows both SL4 and SL5 solutions to compile. Not sure what this impact this has on functionality as I don't use this class.
Cheers