Reputation: 1959
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
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