I am working on ASP.NET MVC and I need to create separate dll of all pages in project.
Let me explain what should I need. Suppose I have create controller like:
- home.cs
- index.cs
- test1.cs
- test2.cs
and view :
- home.cshtml
- index.cshtml
- test1.cshtml
- test2.cshtml
then I need to create dll like home.dll
and index.dll
separately of every page because of if i have publish my project after changes in any one controller that time i just need to update the changeable controller dll only.
I don't know it is possible or not but if anyone know then please suggest me ?
Thanks in advance.