Reputation: 35833
Is it possible to view the change of a page inside Web Application Project without building the whole web application project and its dependent library projects?
Thanks.
Upvotes: 0
Views: 90
Reputation: 7575
I don't think you need to build any referenced projects (unless you have made changes in them), but you will need to build the web project
That's the big advantage of the web site model, which supports partial compilation:
Well described here:
http://www.west-wind.com/presentations/aspnetcompilation/aspnetcompilation.asp
Upvotes: 2
Reputation: 803
You can view the change of a page without re-building the whole project only if you change a front end of a page. After changing front end, save it, and then refresh browser. If back end changes, you will need to re-build the whole application.
Upvotes: 1