How can I extract System.Net.Mail from Mono and rename the namespaces?
        Posted  
        
            by JL
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by JL
        
        
        
        Published on 2010-05-11T07:05:12Z
        Indexed on 
            2010/05/11
            8:24 UTC
        
        
        Read the original article
        Hit count: 377
        
Microsoft's implementation of System.Net.Mail does not provide a robust mailing solution. I would like to use Mono's implementation of System.Net.Mail instead, however that namespace is embedded in the System.dll shipped with Mono, and has exact same namespaces as the original .net framework.
What I would like to do is instead extract System.Net.Mail from the mono solution and rename namespaces to Mono.System.Net.Mail. Then I can compile this in its own DLL and finally have a mailing solution that works!
Can anyone tell me how this can be done?
© Stack Overflow or respective owner