mgravell / fast-member

Automatically exported from code.google.com/p/fast-member
Apache License 2.0
1.02k stars 141 forks source link

Compiler directive mismatch for NET20 vs NO_DYNAMIC #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
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

Original issue reported on code.google.com by yoga.san...@gmail.com on 30 Apr 2012 at 12:36