Posted on Apr 30, 2012 by
Happy Cat
What steps will reproduce the problem? 1. Set starting project of solution to FastMember_Net35 2. Do a build / compile 3. It will complain about System.Dynamic not found
2 possible workaround / solution for this: Either: Change Conditional Compilation symbols from NET20 to NO_DYNAMIC
-or- Change compiler directives in codes from:
if !NO_DYNAMIC
...
endif
to:
if !NET20
...
endif
Status: New
Labels:
Type-Defect
Priority-Medium