Can I build 2 or more DLLs from a C # project in Visual Studio 2008?

Because I'm working on creating an RIA Framework using Silverlight and C #. Therefore, I need to use the rich features of Silverlight, such as dynamic loading. But I found that Visual Studio will merge the entire class library (the same namespace or namespace) into one dll.

Do you have an idea to build 2 or more dlls from a C # project? I just create 1 project for 1 child page. Therefore, if I have 100 child pages in my solution, I will create more than 100 projects for this solution, which does not make sense.

thanks

0
source share
3

(dll).

+2

dll . - .

, DLL ?

+1

VS . , .

? .

  • dll, -
  • You can deactivate projects you don’t want to work with.
  • compilation is faster because unmodified projects do not need to be compiled again

I had such a case as in work (many projects in the solution). You will get used to it.

+1
source

All Articles