Possible Duplicate:
ASP.net: Website or web application project
Why would someone choose to use a Website Project over a Web Application Project? I find the website project to be quite limiting. Is there some advantage to using it?
Possible Duplicate:
ASP.net: Website or web application project
Why would someone choose to use a Website Project over a Web Application Project? I find the website project to be quite limiting. Is there some advantage to using it?
Why would someone choose to use a Website Project over a Web Application Project?
No idea. Maybe because he was tricked by this being the default model in VS 2005 and now he has to maintain it?
I find the website project to be quite limiting
Me too.
Is there some advantage to using it?
No.
When it comes to websites i use Visual Studio mainly as an advanced Notepad with intellisense, and all the things you get in a Web Application Project (WAP) is handled by my build server and continuous integration server. I simply don't need ANY of the features WAP gives me and being able to just open any arbitrary folder as a Website project without needing sln or proj files is a huge relief.
IMO a Web Application Project only gives you some control over the build process inside your own VS instance, but working on big projects with many members its not about the individual anyway, and all the build process management is handled elsewhere than in VS.
The main reasons I use the web site model over web projects:
I think the main reason would be the fact that I can easily reference files located elsewhere on the site like I mentioned, but again, there might be a way to do this in projects as well (I haven't created a "project" in a few years)