This seems confusing to me - im creating a class library, and adding all the necessary references for the source files contained in it.
Now, off the bat, there were over 300 compiler errors complaining about missing namespaces. The library will now compile after i just added all of the System.* references, however this is obviously not the best way.
I.e. if a classes needs using System.Web.Script;
, there is no System.Web.Script
reference, how would i find out which one of these references contained it? System.Web
didnt.