I'm trying to dynamically compile source code using the CodeDom.Compiler stuff, which means I need to reference the basic assemblies manually. The source code that I am compiling must be able to access the basic list extension methods, for for instance, Max(), Min(), or Sum(), and probably lambda expressions as well.
When I compile the source, it says I'm missing the required assembly... currently I include System.dll, and System.Core.dll.
Which dll do I need to get the extension methods for generics?