views:

75

answers:

1

I really love ASP.NET 2.0 for being able to make code-behind changes without neededing to re-compile project.

Now I have moved to ASP.NET MVC but one thing that bother me is the fact that I need to re-compile everytime I make a change in the Controller code.

How can I make my ASP.NET MVC application to compile on-demand like ASP.NET 2.0 project?

A: 

I wouldn't bother much about this. One of the greatest advantages of ASP.NET MVC over traditional WebForms is that it allows you to separate concerns and have unit tests. So you make a change in the controller and navigate to the corresponding unit test to verify it. Red-Green-Refactor cycle.

Darin Dimitrov