Matching .NET References to Namespaces
        Posted  
        
            by maxp
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by maxp
        
        
        
        Published on 2010-04-08T16:19:39Z
        Indexed on 
            2010/04/08
            16:23 UTC
        
        
        Read the original article
        Hit count: 360
        
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.
© Stack Overflow or respective owner