Can you have a web application project produce multiple DLLS?
        Posted  
        
            by chris
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by chris
        
        
        
        Published on 2010-06-09T12:31:10Z
        Indexed on 
            2010/06/09
            12:42 UTC
        
        
        Read the original article
        Hit count: 205
        
visual-studio-2008
|dll
I have a VS 2008 web application project that is getting large. My structure looks like:
- WebRoot
  - Common/
  - Foo/
  - Bar/
  - Baz/
so I end up with a single Webroot.dll that contains the code for common, foo, bar, and baz. Is it possible to set it so that I end up with common/ in webroot.dll, and code in foo ends up in foo.dll, bar in bar.dll, etc?
Update:
A couple of suggestions to move some stuff into class libraries. We already have a dozen or so separate class library projects as part of the solution; Foo, Bar and Baz contain nothing but web forms and the associated code-behinds, so moving them into separate class library projects is not feasible.
© Stack Overflow or respective owner