Debugging in asp.net mvc source code?

Have you tried debugging the source code of asp.net mvc?

I have a project and I want to reference the source code of asp.net mvc instead of the compiled dll in the GAC. I also have another validation library (xVal) that also uses the asp.net mvc dll. It seems that if I just replaced my asp.net mvc dll link with an asp.net mvc project, xVal will give me a compiler error.

Do I need to replace all these third-party libraries with a source code project if I want to use the asp.net mvc source code?

Thanks,

+3
source share
3 answers

I believe that you do not need to reference the ASP.NET MVC project at all.
Anything you need:

  • PDB , ( ASP.NET MVC ).
  • bin .
  • , Debug- > Windows- > .
+3

DLL, System.Web.Mvc.dll. , .. , , "" "Windows" > "". DLL "", " " > " ". , .

+1

ASP.NET MVC , . , MVC v1.0 Visual Studio .

0
source

Source: https://habr.com/ru/post/1715134/


All Articles