I have a newly created asp.net MVC 2.0 application that is in a completely separate solution from an existing asp.net web form application.
Since I didn’t want the user to log in again, I deployed the MVC application on the same site as the existing Webforms application - everything works fine.
One thing that I am completely puzzled with, however, is that the Webforms application uses a third-party DLL that has nothing to do with my MVC application, but I cannot use the MVC application without including this DLL in the MVC \ bin directory. Why is this required? Is this not part of this app? It even causes me problems now, so I'm still curious ...
Why is this DLL dependency required in my MVC application?
source
share