Jean-Francois
Jean-Francois

Reputation: 1959

in a ASP.net MVC 2 how Separate the Main DLL?

We are developing a web application with Entity Framework, MVC2, VS2010. VS2010 generates one large DLL when compiled. Is there an option or way for VS2010 to separate the project in two by generating two DLL ?

Upvotes: 0

Views: 96

Answers (1)

Justin Pihony
Justin Pihony

Reputation: 67075

You will need to create a separate class library project that you can then reference. That is the only way that I know of to create more than one DLL.

Youtube video of add/remove reference.

MSDN article on how to add/remove references

Upvotes: 2

Related Questions